javac ast refs index

This commit is contained in:
Dmitry Batkovich
2016-09-22 19:07:38 +03:00
parent 81fc6960fe
commit 04a816cfb8
76 changed files with 2763 additions and 16 deletions
@@ -0,0 +1,8 @@
public class Bar {
public String getMyName() {
return "Bar...";
};
}
@@ -0,0 +1,5 @@
public class Baz {
public void main(FooImpl f) {
System.out.println(f.getMyName());
}
}
@@ -0,0 +1,5 @@
public interface Foo {
String getM<caret>yName();
}
@@ -0,0 +1,7 @@
public class FooImpl implements Foo {
public String getMyName() {
return "FooImpl is my name";
};
}