Sanbornzhang / code2chart

nodejs code 2 chart
MIT License
0 stars 0 forks source link

AST 选型 #1

Open Sanbornzhang opened 1 year ago

Sanbornzhang commented 1 year ago
Parser Supported Languages GitHub
acorn esnext & JSX (using acorn-jsx) https://github.com/acornjs/acorn
esprima esnext & older https://github.com/jquery/esprima
cherow esnext & older https://github.com/cherow/cherow
espree esnext & older https://github.com/eslint/espree
shift esnext & older https://github.com/shapesecurity/shift-parser-js
babel esnext, JSX & typescript https://github.com/babel/babel
TypeScript esnext & typescript https://github.com/Microsoft/TypeScript

现在基本上都是基于 acorn babelParser vs espree babelParser 附加信息多一点 解析速度也会快很多 performance ref: https://github.com/jquery/esprima/issues/1896