Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.