Skip to content

Instantly share code, notes, and snippets.

@spadgos
Created September 12, 2013 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spadgos/6534696 to your computer and use it in GitHub Desktop.
Save spadgos/6534696 to your computer and use it in GitHub Desktop.
Acorn AST sample
_.bar()
{
"0": {
"type": "CallExpression",
"start": 0,
"end": 7,
"callee": {
"type": "MemberExpression",
"start": 0,
"end": 5,
"object": {
"type": "Identifier",
"start": 0,
"end": 1,
"name": "_"
},
"property": {
"type": "Identifier",
"start": 2,
"end": 5,
"name": "bar"
},
"computed": false
},
"arguments": []
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment