fix prop modality reading from class files
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user