Skip to content

goto-bus-stop/estree-assign-parent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

estree-assign-parent

assign .parent properties to all nodes in an ast.

npm travis standard

Install

npm install estree-assign-parent

Usage

var assignParent = require('estree-assign-parent')

var ast = assignParent(parse(`
  module.exports = function xyz () {
    return xyz.toString()
  }
`))

assert.equal(ast.body[0].parent, ast)

API

assignParent(ast, key='parent')

Add a parent key to all nodes belonging to ast, referring to the parent node. The key option can be used to assign a different name, like 'parentNode'.

License

Apache-2.0

About

assign `.parent` properties to all nodes in an ast.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published