Created
December 8, 2014 05:08
-
-
Save why-jay/80f02f0c4ab65b14b302 to your computer and use it in GitHub Desktop.
"var x = 1" in Mozilla Parser API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "Program", | |
"body": [ | |
{ | |
"type": "VariableDeclaration", | |
"declarations": [ | |
{ | |
"type": "VariableDeclarator", | |
"id": { | |
"type": "Identifier", | |
"name": "x" | |
}, | |
"init": { | |
"type": "Literal", | |
"value": 1, | |
"raw": "1" | |
} | |
} | |
], | |
"kind": "var" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment