fix prop modality reading from class files

This commit is contained in:
Stepan Koltsov
2012-03-02 23:18:50 +04:00
parent 25ed7018a4
commit 16917dea4f
37 changed files with 66 additions and 37 deletions
@@ -2,5 +2,5 @@ namespace test
final class test.FieldAsVar : jet.Any {
final /*constructor*/ fun <init>(): test.FieldAsVar
var f: jet.Int
final var f: jet.Int
}
@@ -2,5 +2,5 @@ namespace test
open class test.FieldOfArrayType : jet.Any {
final /*constructor*/ fun <init>(): test.FieldOfArrayType
var files: jet.Array<java.io.File?>?
final var files: jet.Array<java.io.File?>?
}
@@ -2,5 +2,5 @@ namespace test
final class test.FinalFieldAsVal : jet.Any {
final /*constructor*/ fun <init>(): test.FinalFieldAsVal
val f: jet.Int
final val f: jet.Int
}
@@ -2,6 +2,6 @@ namespace test
final class test.TwoFields : jet.Any {
final /*constructor*/ fun <init>(): test.TwoFields
var a: jet.Int
var b: jet.Short
final var a: jet.Int
final var b: jet.Short
}
@@ -2,5 +2,5 @@ namespace test
open class test.NotNullField : jet.Any {
final /*constructor*/ fun <init>(): test.NotNullField
var hi: jet.String
final var hi: jet.String
}