fix tests in org.jetbrains.kotlin.checkers

This commit is contained in:
Michael Nedzelsky
2015-09-03 15:25:57 +03:00
parent a3f22939f1
commit bc5c9065d2
2821 changed files with 12932 additions and 12960 deletions
@@ -1,24 +1,24 @@
package test
internal open class ClassVarModality {
public open class ClassVarModality {
/*primary*/ public constructor ClassVarModality()
internal open var property1: kotlin.Int
internal open fun <get-property1>(): kotlin.Int
internal open fun <set-property1>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
public open var property1: kotlin.Int
public open fun <get-property1>(): kotlin.Int
public open fun <set-property1>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
internal final var property2: kotlin.Int
internal final fun <get-property2>(): kotlin.Int
internal final fun <set-property2>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
internal open var property3: kotlin.Int
internal open fun <get-property3>(): kotlin.Int
public open var property3: kotlin.Int
public open fun <get-property3>(): kotlin.Int
private open fun <set-property3>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
internal final var property4: kotlin.Int
internal final fun <get-property4>(): kotlin.Int
private final fun <set-property4>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
}
internal abstract class ClassVarModalityAbstract {
public abstract class ClassVarModalityAbstract {
/*primary*/ public constructor ClassVarModalityAbstract()
internal abstract var property1: java.util.Date
internal abstract fun <get-property1>(): java.util.Date
public abstract var property1: java.util.Date
public abstract fun <get-property1>(): java.util.Date
public abstract fun <set-property1>(/*0*/ <set-?>: java.util.Date): kotlin.Unit
}