Access the Abstract Syntax Tree of V8 Engine

前端 未结 3 666
醉梦人生
醉梦人生 2021-02-03 12:41

Is it possible to access the AST of the v8 engine, for a given JavaScript code? I\'m working on a JavaScript Static Analyzer using V8 engine.

3条回答
  •  无人共我
    2021-02-03 13:10

    Well, I don't know what you want to achieve, but it sounds like you want to modify the AST from inside your C++ code (or maybe write wrapper classes for the JavaScript context for them as well?).

    I suggest to take a look at the headers file which pretty explains what's there to be used on V8's AST:

    http://v8.googlecode.com/svn/trunk/src/ast.h

    ~Cheers

提交回复
热议问题