console.log("hello")
複製代碼
則會獲得這樣一個樹形結構(已簡化):javascript
{
"type": "Program", // 程序根節點
"body": [
{
"type": "ExpressionStatement", // 一個語句節點
"expression": {
"type": "CallExpression", // 一個函數調用表達式節點
"callee": {
"type": "MemberExpression", // 表達式
"object": {
"type": "Identifier",
"name": "console"
},
"property": {
"type": "Identifier",
"name": "log"
},
"computed": false
},
"arguments": [
{
"type": "StringLiteral",
"extra": {
"rawValue": "hello",
"raw": "\"hello\""
},
"value": "hello"
}
]
}
}
],
"directives": []
}
複製代碼