commit | 0c4c859f472f7243919f1af7a0871cf8155af1ba | [log] [tgz] |
---|---|---|
author | Federico Tomassetti <federico@tomassetti.me> | Fri Aug 21 23:00:06 2015 +0200 |
committer | Federico Tomassetti <federico@tomassetti.me> | Fri Aug 21 23:00:06 2015 +0200 |
tree | 89a3afc6dc51d311927b21448bc50fb5de5c0e1e | |
parent | e7704aa00835e056f7870bcb255db697f1f7ca25 [diff] |
add tests for static field access
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.