Fix resolve of inner and nested classes in JavaDescriptorResolver

This commit is contained in:
Pavel V. Talanov
2012-11-11 14:34:06 +04:00
parent 96b48aedfc
commit 737b246b01
10 changed files with 54 additions and 25 deletions
@@ -0,0 +1,11 @@
package test;
public class InnerClass {
public class Inner {
public void foo() {}
}
public static class Nested {
public void bar() {}
}
}