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 -1
View File
@@ -3,7 +3,7 @@ import java.util.*
namespace html {
abstract class Factory<T> {
fun create() : T
abstract fun create() : T
}
abstract class Element