Skip to content

ast 节点

文档:

https://github.com/babel/babel/blob/main/packages/babel-parser/ast/spec.md

这里简单记录几个常见 ast 节点。

literal 字面量

js
const name = 'haha' // haha ---> StringLiteral 字符串字面量。
const name = `hehe` // hehe ---> TemplateLiteral 模版字面量。
const age = 18 // 18 ---> NumberLiteral 数字字面量。

Identifier 标识符

变量名、属性名、参数名等等一系列声明和引用的名字。

比如在 const name = 'haha' 中,name 就是标识符。

Released under the MIT License.