I would like to parse a code snippet using javac in a little java program. Input: a string
e.g. if (b!=0) { return b/a; } else { callErrorMethod(a,b); }
It would be nice to use javac to parse this snippet and get the tokens, calls, statements / the javac AST.
Any ideas if this is possible without hacks?