Question

Are there any tools available for producing a parse tree of NodeJS code? The closest I can find is the closure compiler but I don't think that will give me a parseable tree for analysis.

Était-ce utile?

La solution

Node.js is just JavaScript (aka ECMAScript). I recommend Esprima (http://esprima.org/), which supports the de-facto standard AST established by Mozilla.

Autres conseils

Esprima generates very nice ASTs, but if you need the parse tree you must look elsewhere. Esprima only returns ASTs and the sequence of tokens for some text. If you don't want to model the language yourself, you could use another tool like ANTLR (see: https://stackoverflow.com/a/5982455/206543).

For the difference between ASTs and parse trees, look here: https://stackoverflow.com/a/9864571/206543

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top