Slide 9
Slide 9 text
Mozilla
JS
AST
example
• “var
a
=
42”
is
represented
as
follows,
{
"type":
"Program",
"body":
[{
"type":
"VariableDeclaraHon",
"declaraHons":
[{
"type":
"VariableDeclarator",
"id":
{
"type":
"IdenHfier",
"name":
"a"
},
"init":
{
"type":
"Literal",
"value":
42,
"raw":
"42”
}
}],
"kind":
"var”
}]
}