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.
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