Property accessors checked. Many things TBD

This commit is contained in:
Andrey Breslav
2011-04-18 22:31:59 +04:00
parent ec080358cb
commit 78f3eac62a
25 changed files with 492 additions and 175 deletions
+7 -1
View File
@@ -1 +1,7 @@
val x : Int
var x : Int = 1 + x
get() : Int = 1
set(<error>ref</error> value : <error>Long</error>) {$x = value}
val xx : Int = 1 + x
get() : Int = 1
<error>set(ref value : Long) {$x = value}</error>