Node module to manipulate, transform, query and debug esprima ASTs.
When you edit esprima AST and go back to code with escodegen you lose too much information because primary you don't keep track of ranges, tokens, comments etc. esprima-ast-utils do this for you, so no escodegen is needed, you can edit the AST directly and code everything is in sync.
Parse given str
Parameters:
-
str
-
debug
: display $id, $parent and $code in console.log (enumerable=true)
Returns:
Object
Note: location it's not supported, and won't sync with changes, range/rokens do.
Wrap your code into a function and parse given str.
Needed if your code contains a ReturnStatement
at Program level.
Parameters:
-
str
-
debug
: display $id, $parent and $code in console.log (enumerable=true)
Returns:
Object
Note: location it's not supported, and won't sync with changes, range/rokens do.
Parse given file
Parameters:
-
file
: Path -
debug
: display $id, $parent and $code in console.log (enumerable=true)
Returns:
Object
Note: : NodeJS only
Return tree.$code, just for API completeness.
Parameters:
tree
Returns:
String
traverse AST
Parameters:
-
node
-
callback
: function(node, parent, property, index, depth) You can returnfalse
to stop traverse -
depth
: (0) current depth -
recursive
: (true) recursively traverse
traverse
AST and set $parent node
Parameters:
-
root
-
debug
: display $parent in console.log (enumerable=true)
traverse
AST and set an unique $id
to every node
Parameters:
-
node
-
debug
: display $id in console.log (enumerable=true)
Traverse the AST and add comments as nodes, so you can query them. Loop thought comments and find a proper place to inject (BlockStament or alike)
- attach the comment to the before nearest children
- if a children contains the comment it's considered invalid
- push otherwise
Parameters:
root
traverse
and filter
given AST based on given callback
Parameters:
-
node
-
callback
-
traverse_fn
Returns:
Array
: Every match of thecallback
Get parent node based on given callback, stops on true
Parameters:
-
node
-
callback
Returns:
Object|NULL
get the root of the AST
Parameters:
node
Returns:
Object
Recursive clone a node. Do no include "$" properties like $parent or $id
If you want those, call parentize
- idze
after cloning
Parameters:
node
Returns:
Object
Show your tree in various ways to easy debug Big trees will be always a pain, so keep it small if possible
Parameters:
-
tree
: Any node, if root tokens & source will be displayed -
max_width
: max tokens per line -
display_code_in_tree
: when display the tree attach the code on the right
filter
the AST and return the function with given name, null otherwise.
Parameters:
-
node
-
fn_name
Returns:
Object|NULL
filter
the AST and return the function > block with given name, null otherwise.
Parameters:
-
node
-
fn_name
Returns:
Object|NULL
shortcut
Parameters:
-
node
-
fn_name
Returns:
Boolean
shortcut
Parameters:
-
node
-
var_name
Returns:
Boolean
reverse from node to root and look for a Variable declaration
Parameters:
-
node
-
var_name
Returns:
Boolean
Note: It's not perfect because VariableDeclaration
it's not hoisted
node
constains subnode
Parameters:
-
node
-
subnode
Returns:
Boolean
Has a body property, use to freely attach/detach
Parameters:
node
Returns:
Boolean
shortcut: Is a comment (Line or Block) and has text
Parameters:
node
Returns:
Boolean
shortcut: search for a comment (trim it's content for maximum compatibility)
Parameters:
-
node
-
comment
Returns:
Object
shortcut: Return node code
Parameters:
node
Returns:
String
Return FunctionDeclaration
arguments name as a list
Parameters:
node
Returns:
Array
Parameters:
node
Attach Code/Program to given node.
Parameters:
-
node
: node to attach -
property
: Where attach, could be an array or an object -
position
: index if an array is used as target property -
str
: String is preferred if not possible remember that only Program can be attached, you may consider usingtoProgram
Note: tokens are updated
Note: range is updated
Note: comments are not attached to root.comments (invalid-comments)
Attach a punctuator and keep the tree ranges sane. The Punctuator can be anything... be careful!
Parameters:
-
tree
-
punctuator
-
position
Returns:
String
: detached code string
Note: The Punctuator is not parsed and could be assigned to nearest literal or alike.
Detach given node from it's parent
Parameters:
-
node
-
property
Returns:
String
: detached code string
Note: node.$parent
is set to null
, remember to save it first if you need it.
Attach after node, that means node.$parent.type
is a BockStament
Parameters:
-
node
-
str
: String is preferred if not possible remember that only Program can be attached, you may consider usingtoProgram
-
property
: where to search node in the parent
Attach before node, that means node.$parent.type
is a BockStament
Parameters:
-
node
-
str
: String is preferred if not possible remember that only Program can be attached, you may consider usingtoProgram
Shortcut: Search for given comment, and attachAfter
Parameters:
-
node
-
comment
-
str
: String is preferred if not possible remember that only Program can be attached, you may consider usingtoProgram
Returns:
Boolean
: success
Shortcut: detach/attach
Parameters:
-
node
-
str
: String is preferred if not possible remember that only Program can be attached, you may consider usingtoProgram
Shortcut: Search for a comment and replace
Parameters:
-
node
-
comment
-
str
: String is preferred if not possible remember that only Program can be attached, you may consider usingtoProgram
Inject code directly intro the given range.
After the injection the code will be parsed again so original $id
will be lost
Parameters:
-
tree
-
range
-
str
: String is preferred if not possible remember that only Program can be attached, you may consider usingtoProgram
-
debug
: display $id, $parent and $code in console.log (enumerable=true)
Note: this is dangerous and powerful
rename Identifier
Parameters:
-
node
-
new_name
traverse
and apply given replacements
Parameters:
-
node
-
replacements
Example:
renameProperty(node, {"old_var": "new_var", "much_older": "shinnig_new"})
traverse
and apply given replacements
Parameters:
-
node
-
replacements
Example:
renameVariable(node, {"old_var": "new_var", "much_older": "shinnig_new"})
traverse and apply given replacements
Parameters:
-
node
-
replacements
Example:
renameFunction(node, {"old_var": "new_var", "much_older": "shinnig_new"})
Clone given node(s) and extract tokens & code from root to given you a Program-like attachable node
Parameters:
node
: if array is provided will add all nodes to program.body
Get token based on given range
Parameters:
-
tree
-
start
-
end
Returns:
Object|NULL
Get tokens in range
Parameters:
-
tree
-
start
-
end
Returns:
Array|NULL
Push tokens range from start
Parameters:
-
tree
-
start
-
amount
Note: Update nodes range
Grow tokens in given range
Parameters:
-
tree
-
start
-
end
-
amount
Note: Update nodes range
Get the first token
Parameters:
-
tree
-
start
Returns:
Object
Add src
tokens to dst
since start
(so keep the order)
Parameters:
-
dst_tree
-
src
-
start
Note: Remember to push src
tokens before addTokens
otherwise won't be synced
Replace code range with given text.
Parameters:
-
tree
-
range
-
new_text
Remove tokens in range and update ranges
Parameters:
-
tree
-
start
-
end
Note: Do not remove nodes.
(The MIT License)
Copyright (c) 2014 Luis Lafuente [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.