Created
September 12, 2013 08:55
-
-
Save spadgos/6534696 to your computer and use it in GitHub Desktop.
Acorn AST sample
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
_.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