Uast: Update tests, make the tests a bit more readable (provide toString() methods for Uast kinds)

This commit is contained in:
Yan Zhulanow
2016-03-24 17:11:28 +03:00
parent 109c76c87d
commit 3484f92d10
29 changed files with 454 additions and 105 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
default class _Dummy_ {
default inner class Lambda {
default class Lambda {
default fun example(): void {
doJob({ arg: String ->
arg + arg
@@ -11,7 +11,7 @@ default class _Dummy_ {
}
}
default abstract interface Job {
default abstract static interface Job {
public fun doJob(arg: String): String = EmptyExpression
}
}