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
+6 -6
View File
@@ -2,25 +2,25 @@ package
package a {
internal interface Persistent {
public interface Persistent {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
internal interface PersistentFactory</*0*/ T> {
public interface PersistentFactory</*0*/ T> {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
internal final class Relation</*0*/ Source : a.Persistent, /*1*/ Target : a.Persistent> {
public final class Relation</*0*/ Source : a.Persistent, /*1*/ Target : a.Persistent> {
public constructor Relation</*0*/ Source : a.Persistent, /*1*/ Target : a.Persistent>(/*0*/ sources: a.PersistentFactory<Source>, /*1*/ targets: a.PersistentFactory<Target>)
internal final val sources: a.PersistentFactory<Source>
internal final val targets: a.PersistentFactory<Target>
public final val sources: a.PersistentFactory<Source>
public final val targets: a.PersistentFactory<Target>
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
internal final fun opposite(): a.Relation<Target, Source>
public final fun opposite(): a.Relation<Target, Source>
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
}