partial support for 'abstract' modifier added

This commit is contained in:
svtk
2011-09-06 13:25:56 +04:00
parent 07b2ab347d
commit fa631503ef
37 changed files with 388 additions and 127 deletions
@@ -1,5 +1,5 @@
abstract open class Default {
fun defaultValue(): Int
abstract fun defaultValue(): Int
}
class MyInt() {
@@ -1,5 +1,5 @@
class Base() {
public var v : Int
public var v : Int = 0
}
class Left() : Base() {}
@@ -2,7 +2,7 @@ class C() {
public var f: Int
{
f = 610
$f = 610
}
}
@@ -3,7 +3,7 @@ class Base() {
public val read : Int
get() = 239
public var readwrite : Int
public var readwrite : Int = 0
get() = $readwrite + 1
set(n : Int) {
$readwrite = n