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

13
plugins/uast-java/testData/Lambda.java vendored Normal file
View File

@@ -0,0 +1,13 @@
class Lambda {
void example() {
doJob(arg -> arg + arg, "Mary");
}
void doJob(Job job, String arg) {
System.out.println(job.doJob(arg));
}
}
interface Job {
String doJob(String arg);
}