Uast, Lint: Update and fix tests

This commit is contained in:
Yan Zhulanow
2016-04-06 19:53:11 +03:00
parent 21a2115501
commit c13c24becc
34 changed files with 1073 additions and 289 deletions
+7 -7
View File
@@ -1,17 +1,17 @@
default class _Dummy_ {
default class Lambda {
default fun example(): void {
package_local class _Dummy_ {
package_local class Lambda {
package_local fun example(): void {
doJob({ arg: String ->
arg + arg
}, "Mary")
}
default fun doJob(job: Job, arg: String): void {
package_local fun doJob(job: Job, arg: String): void {
System.out.println(job.doJob(arg))
}
}
default abstract static interface Job {
public fun doJob(arg: String): String = EmptyExpression
package_local abstract static interface Job {
public abstract fun doJob(arg: String): String
}
}