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
+7 -7
View File
@@ -1,18 +1,18 @@
default class _Dummy_ {
default inner class Simple {
default class Simple {
var name: String
public fun Simple(name: String) {
public fun <init>(name: String) {
this.name = name
}
public fun getName(): String {
return name
}
public fun setName(name: String): void {
this.name = name
}
}
}
}