ast-scope
v0.4.0
Published
A JavaScript AST scope analyzer
Downloads
24
Readme
ast-scope
A JavaScript AST scope analyzer. The module is heavily inspired by escope.
Installation
$ npm install ast-scope
Usage
var esprima = require('esprima');
var as = require('ast-scope');
var ast = esprima.parse('var foo = function() {};');
var topScope = as.analyze(ast);
License
MIT