Java Uast: Initial implementation

This commit is contained in:
Yan Zhulanow
2016-03-03 17:46:54 +03:00
parent 16de31aebe
commit a13a1e1e4a
72 changed files with 2952 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
class NestedClasses {
public static class Nested {
void func1() {
}
}
public class Inner {
void func2() {
}
}
}