Regenerated all test data which uses NamespaceComparator.

This commit is contained in:
Evgeny Gerashchenko
2012-12-26 19:01:00 +04:00
parent af3dffbed4
commit 5dec5a4c28
335 changed files with 3084 additions and 2792 deletions
@@ -1,14 +1,15 @@
namespace test
public final enum class test.MyEnum : jet.Enum<test.MyEnum> {
private final /*constructor*/ fun <init>(): test.MyEnum
public final override /*1*/ /*fake_override*/ fun name(): jet.String
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
public final class object test.MyEnum.<class-object-for-MyEnum> {
private final /*constructor*/ fun <init>(): test.MyEnum.<class-object-for-MyEnum>
public final val ANOTHER: test.MyEnum
public final val ENTRY: test.MyEnum
public final fun valueOf(/*0*/ value: jet.String): test.MyEnum
public final fun values(): jet.Array<test.MyEnum>
public final enum class MyEnum : jet.Enum<test.MyEnum> {
private constructor MyEnum()
public final override /*1*/ /*fake_override*/ fun name() : jet.String
public final override /*1*/ /*fake_override*/ fun ordinal() : jet.Int
public class object <class-object-for-MyEnum> {
private constructor <class-object-for-MyEnum>()
public final val ANOTHER : test.MyEnum
public final val ENTRY : test.MyEnum
public final fun valueOf(/*0*/ value : jet.String) : test.MyEnum
public final fun values() : jet.Array<test.MyEnum>
}
}
+2 -2
View File
@@ -1,5 +1,5 @@
namespace test
public open class test.inner : test.B.C {
public final /*constructor*/ fun <init>(): test.inner
public open class inner : test.B.C {
public constructor inner()
}
@@ -1,12 +1,14 @@
namespace test
public abstract trait test.TwoSuperclassesInconsistentGenericTypes : java.lang.Object {
public abstract fun foo(): jet.MutableList<jet.String?>
public abstract trait test.TwoSuperclassesInconsistentGenericTypes.Other : java.lang.Object {
public abstract fun foo(): jet.MutableList<jet.String>?
public trait TwoSuperclassesInconsistentGenericTypes : java.lang.Object {
public abstract fun foo() : jet.MutableList<jet.String?>
public trait Other : java.lang.Object {
public abstract fun foo() : jet.MutableList<jet.String>?
}
public open class test.TwoSuperclassesInconsistentGenericTypes.Sub : test.TwoSuperclassesInconsistentGenericTypes, test.TwoSuperclassesInconsistentGenericTypes.Other {
public final /*constructor*/ fun <init>(): test.TwoSuperclassesInconsistentGenericTypes.Sub
public open override /*2*/ fun foo(): jet.MutableList<jet.String>
public open class Sub : test.TwoSuperclassesInconsistentGenericTypes, test.TwoSuperclassesInconsistentGenericTypes.Other {
public constructor Sub()
public open override /*2*/ fun foo() : jet.MutableList<jet.String>
}
}
@@ -1,14 +1,17 @@
namespace test
public abstract trait test.TwoSuperclassesVarargAndNot : java.lang.Object {
public abstract trait test.TwoSuperclassesVarargAndNot.Sub : test.TwoSuperclassesVarargAndNot.Super1, test.TwoSuperclassesVarargAndNot.Super2 {
public abstract override /*1*/ fun foo(/*0*/ p0: jet.Array<out jet.String?>?): jet.Tuple0
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ vararg p0: jet.String? /*jet.Array<jet.String?>*/): jet.Tuple0
public trait TwoSuperclassesVarargAndNot : java.lang.Object {
public trait Sub : test.TwoSuperclassesVarargAndNot.Super1, test.TwoSuperclassesVarargAndNot.Super2 {
public abstract override /*1*/ /*fake_override*/ fun foo(/*0*/ vararg p0 : jet.String? /*jet.Array<jet.String?>*/) : Unit
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.Array<out jet.String?>?) : Unit
}
public abstract trait test.TwoSuperclassesVarargAndNot.Super1 : java.lang.Object {
public abstract fun foo(/*0*/ vararg p0: jet.String? /*jet.Array<jet.String?>*/): jet.Tuple0
public trait Super1 : java.lang.Object {
public abstract fun foo(/*0*/ vararg p0 : jet.String? /*jet.Array<jet.String?>*/) : Unit
}
public abstract trait test.TwoSuperclassesVarargAndNot.Super2 : java.lang.Object {
public abstract fun foo(/*0*/ p0: jet.Array<out jet.String?>?): jet.Tuple0
public trait Super2 : java.lang.Object {
public abstract fun foo(/*0*/ p0 : jet.Array<out jet.String?>?) : Unit
}
}
@@ -1,6 +1,6 @@
namespace test
public open class test.JFrame : awt.Frame {
public final /*constructor*/ fun <init>(): test.JFrame
protected final var accessibleContext: jet.String?
public open class JFrame : awt.Frame {
public constructor JFrame()
protected final var accessibleContext : jet.String?
}
@@ -1,12 +1,14 @@
namespace test
public open class test.RawSuperType : java.lang.Object {
public final /*constructor*/ fun <init>(): test.RawSuperType
public open class test.RawSuperType.Derived : test.RawSuperType.Super<jet.Any?> {
public final /*constructor*/ fun <init>(): test.RawSuperType.Derived
public open override /*1*/ fun foo(/*0*/ p0: jet.Any?): jet.Tuple0
public open class RawSuperType : java.lang.Object {
public constructor RawSuperType()
public open class Derived : test.RawSuperType.Super<jet.Any?> {
public constructor Derived()
public open override /*1*/ fun foo(/*0*/ p0 : jet.Any?) : Unit
}
public abstract trait test.RawSuperType.Super</*0*/ T : jet.Any?> : java.lang.Object {
public abstract fun foo(/*0*/ p0: T?): jet.Tuple0
public trait Super</*0*/ T> : java.lang.Object {
public abstract fun foo(/*0*/ p0 : T?) : Unit
}
}
@@ -1,3 +1,2 @@
namespace test
public final val foo: jet.String
public final val foo : jet.String
@@ -1,24 +1,26 @@
namespace test
public abstract trait test.SubclassWithRawType : java.lang.Object {
public abstract trait test.SubclassWithRawType.Sub : test.SubclassWithRawType.Super {
public abstract override /*1*/ fun array1(): jet.Array<jet.List<jet.String?>>?
public abstract override /*1*/ fun array2(): jet.Array<jet.List<jet.Any>>?
public abstract override /*1*/ fun boundWildcard1(): jet.MutableList<out jet.List<jet.String?>?>?
public abstract override /*1*/ fun boundWildcard2(): jet.MutableList<in jet.List<jet.Any>?>?
public abstract override /*1*/ fun simple1(): jet.MutableList<out jet.String?>?
public abstract override /*1*/ fun simple2(): jet.MutableList<out jet.List<jet.String>?>?
public abstract override /*1*/ fun simple3(): jet.MutableList<out jet.Any>?
public abstract override /*1*/ fun wildcard(): jet.MutableList<out jet.Any?>?
public trait SubclassWithRawType : java.lang.Object {
public trait Sub : test.SubclassWithRawType.Super {
public abstract override /*1*/ fun array1() : jet.Array<jet.List<jet.String?>>?
public abstract override /*1*/ fun array2() : jet.Array<jet.List<jet.Any>>?
public abstract override /*1*/ fun boundWildcard1() : jet.MutableList<out jet.List<jet.String?>?>?
public abstract override /*1*/ fun boundWildcard2() : jet.MutableList<in jet.List<jet.Any>?>?
public abstract override /*1*/ fun simple1() : jet.MutableList<out jet.String?>?
public abstract override /*1*/ fun simple2() : jet.MutableList<out jet.List<jet.String>?>?
public abstract override /*1*/ fun simple3() : jet.MutableList<out jet.Any>?
public abstract override /*1*/ fun wildcard() : jet.MutableList<out jet.Any?>?
}
public abstract trait test.SubclassWithRawType.Super : java.lang.Object {
public abstract fun array1(): jet.Array<jet.List<jet.Any?>>?
public abstract fun array2(): jet.Array<jet.List<jet.String>>?
public abstract fun boundWildcard1(): jet.MutableList<out jet.List<jet.Any?>?>?
public abstract fun boundWildcard2(): jet.MutableList<in jet.List<jet.String>?>?
public abstract fun simple1(): jet.MutableList<out jet.Any?>?
public abstract fun simple2(): jet.MutableList<out jet.Any?>?
public abstract fun simple3(): jet.MutableList<jet.String>?
public abstract fun wildcard(): jet.MutableList<out jet.Any?>?
public trait Super : java.lang.Object {
public abstract fun array1() : jet.Array<jet.List<jet.Any?>>?
public abstract fun array2() : jet.Array<jet.List<jet.String>>?
public abstract fun boundWildcard1() : jet.MutableList<out jet.List<jet.Any?>?>?
public abstract fun boundWildcard2() : jet.MutableList<in jet.List<jet.String>?>?
public abstract fun simple1() : jet.MutableList<out jet.Any?>?
public abstract fun simple2() : jet.MutableList<out jet.Any?>?
public abstract fun simple3() : jet.MutableList<jet.String>?
public abstract fun wildcard() : jet.MutableList<out jet.Any?>?
}
}
@@ -1,10 +1,11 @@
namespace test
public open class test.JavaSubclass : test.KotlinClass {
public final /*constructor*/ fun <init>(): test.JavaSubclass
public open override /*1*/ fun foo(): jet.String
public open class JavaSubclass : test.KotlinClass {
public constructor JavaSubclass()
public open override /*1*/ fun foo() : jet.String
}
public open class test.KotlinClass : jet.Any {
public final /*constructor*/ fun <init>(): test.KotlinClass
public open fun foo(): jet.String
public open class KotlinClass {
public constructor KotlinClass()
public open fun foo() : jet.String
}