Rewritten NameValidatorImpl to be both more efficient and more correct

This commit is contained in:
Valentin Kipyatkov
2015-06-26 21:06:32 +03:00
parent df5f035760
commit de2378f909
10 changed files with 72 additions and 65 deletions
@@ -0,0 +1,8 @@
class For
val For.parent: For
get() = For()
fun foo(f: For) {
val parent = f.parent
}