partial support for 'abstract' modifier added

This commit is contained in:
svtk
2011-09-06 14:57:42 +04:00
41 changed files with 354 additions and 113 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