commit | 31b108cbfd418f43e7b568374af2e635a580e171 | [log] [tgz] |
---|---|---|
author | Federico Tomassetti <federico@tomassetti.me> | Sun Aug 23 21:27:34 2015 +0200 |
committer | Federico Tomassetti <federico@tomassetti.me> | Sun Aug 23 21:27:34 2015 +0200 |
tree | 014692f2dc309ce58ae2fd83c5d9daad1547daf5 | |
parent | 279b3ac52fb15a8c1a055a1b6e8d31cec0f2e96c [diff] |
add StatementContextTest
A Symbol Solver for Java built on top of JavaParser.
The goal of the project is to complement JavaParser with symbol resolution, so that more advanced tools can be built on top of it.
Consider this:
int a = 0; while (true) { String a = "hello!"; Object foo = a + 1; }
In the expression a + 1
JavaParser is not able to tell us to which definition of a
we are referring to and consequently it cannot tell us the type of a
. The java-symbol-solver will permit to do that.