Fix misspelling in test data

This commit is contained in:
Mikhael Bogdanov
2018-04-09 10:06:06 +02:00
parent d788b3b6f9
commit 31e459d9c0
10 changed files with 97 additions and 97 deletions
@@ -36,7 +36,7 @@ interface KotlinInterfaceForIndirect : JavaInterface {
}
interface KotlinInterfaceInderectInheritance : KotlinInterfaceForIndirect {
interface KotlinInterfaceIndirectInheritance : KotlinInterfaceForIndirect {
@JvmDefault
override fun test() {}
@@ -33,7 +33,7 @@ public interface KotlinInterfaceForIndirect : JavaInterface {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public interface KotlinInterfaceInderectInheritance : KotlinInterfaceForIndirect {
public interface KotlinInterfaceIndirectInheritance : KotlinInterfaceForIndirect {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
@kotlin.jvm.JvmDefault public open override /*1*/ fun test(): kotlin.Unit
@@ -105,7 +105,7 @@ interface KotlinInterface : KInterface {
}
interface KotlinInterfaceInderectInheritance : KotlinInterface {
interface KotlinInterfaceIndirectInheritance : KotlinInterface {
@JvmDefault
fun foooo() {
super.test()
@@ -116,11 +116,11 @@ interface KotlinInterfaceInderectInheritance : KotlinInterface {
object {
fun run () {
super@KotlinInterfaceInderectInheritance.test()
super@KotlinInterfaceInderectInheritance.property
super@KotlinInterfaceIndirectInheritance.test()
super@KotlinInterfaceIndirectInheritance.property
super@KotlinInterfaceInderectInheritance.testNonDefault()
super@KotlinInterfaceInderectInheritance.propertyNonDefault
super@KotlinInterfaceIndirectInheritance.testNonDefault()
super@KotlinInterfaceIndirectInheritance.propertyNonDefault
}
}
}
@@ -136,11 +136,11 @@ interface KotlinInterfaceInderectInheritance : KotlinInterface {
object {
fun run () {
super@KotlinInterfaceInderectInheritance.test()
super@KotlinInterfaceInderectInheritance.property
super@KotlinInterfaceIndirectInheritance.test()
super@KotlinInterfaceIndirectInheritance.property
super@KotlinInterfaceInderectInheritance.testNonDefault()
super@KotlinInterfaceInderectInheritance.propertyNonDefault
super@KotlinInterfaceIndirectInheritance.testNonDefault()
super@KotlinInterfaceIndirectInheritance.propertyNonDefault
}
}
return ""
@@ -155,11 +155,11 @@ interface KotlinInterfaceInderectInheritance : KotlinInterface {
object {
fun run () {
super@KotlinInterfaceInderectInheritance.<!INTERFACE_CANT_CALL_DEFAULT_METHOD_VIA_SUPER!>test<!>()
super@KotlinInterfaceInderectInheritance.<!INTERFACE_CANT_CALL_DEFAULT_METHOD_VIA_SUPER!>property<!>
super@KotlinInterfaceIndirectInheritance.<!INTERFACE_CANT_CALL_DEFAULT_METHOD_VIA_SUPER!>test<!>()
super@KotlinInterfaceIndirectInheritance.<!INTERFACE_CANT_CALL_DEFAULT_METHOD_VIA_SUPER!>property<!>
super@KotlinInterfaceInderectInheritance.testNonDefault()
super@KotlinInterfaceInderectInheritance.propertyNonDefault
super@KotlinInterfaceIndirectInheritance.testNonDefault()
super@KotlinInterfaceIndirectInheritance.propertyNonDefault
}
}
}
@@ -174,11 +174,11 @@ interface KotlinInterfaceInderectInheritance : KotlinInterface {
object {
fun run () {
super@KotlinInterfaceInderectInheritance.<!INTERFACE_CANT_CALL_DEFAULT_METHOD_VIA_SUPER!>test<!>()
super@KotlinInterfaceInderectInheritance.<!INTERFACE_CANT_CALL_DEFAULT_METHOD_VIA_SUPER!>property<!>
super@KotlinInterfaceIndirectInheritance.<!INTERFACE_CANT_CALL_DEFAULT_METHOD_VIA_SUPER!>test<!>()
super@KotlinInterfaceIndirectInheritance.<!INTERFACE_CANT_CALL_DEFAULT_METHOD_VIA_SUPER!>property<!>
super@KotlinInterfaceInderectInheritance.testNonDefault()
super@KotlinInterfaceInderectInheritance.propertyNonDefault
super@KotlinInterfaceIndirectInheritance.testNonDefault()
super@KotlinInterfaceIndirectInheritance.propertyNonDefault
}
}
return ""
@@ -226,7 +226,7 @@ open class KotlinClass : KInterface {
}
}
class KotlinClassInderectInheritance : KotlinClass() {
class KotlinClassIndirectInheritance : KotlinClass() {
fun foo2() {
super.test()
super.property
@@ -236,11 +236,11 @@ class KotlinClassInderectInheritance : KotlinClass() {
object {
fun run () {
super@KotlinClassInderectInheritance.test()
super@KotlinClassInderectInheritance.property
super@KotlinClassIndirectInheritance.test()
super@KotlinClassIndirectInheritance.property
super@KotlinClassInderectInheritance.testNonDefault()
super@KotlinClassInderectInheritance.propertyNonDefault
super@KotlinClassIndirectInheritance.testNonDefault()
super@KotlinClassIndirectInheritance.propertyNonDefault
}
}
@@ -256,18 +256,18 @@ class KotlinClassInderectInheritance : KotlinClass() {
object {
fun run () {
super@KotlinClassInderectInheritance.test()
super@KotlinClassInderectInheritance.property
super@KotlinClassIndirectInheritance.test()
super@KotlinClassIndirectInheritance.property
super@KotlinClassInderectInheritance.testNonDefault()
super@KotlinClassInderectInheritance.propertyNonDefault
super@KotlinClassIndirectInheritance.testNonDefault()
super@KotlinClassIndirectInheritance.propertyNonDefault
}
}
return ""
}
}
class KotlinClassInderectInheritance2 : KotlinInterfaceInderectInheritance {
class KotlinClassIndirectInheritance2 : KotlinInterfaceIndirectInheritance {
fun foo() {
super.test()
super.property
@@ -277,11 +277,11 @@ class KotlinClassInderectInheritance2 : KotlinInterfaceInderectInheritance {
object {
fun run () {
super@KotlinClassInderectInheritance2.test()
super@KotlinClassInderectInheritance2.property
super@KotlinClassIndirectInheritance2.test()
super@KotlinClassIndirectInheritance2.property
super@KotlinClassInderectInheritance2.testNonDefault()
super@KotlinClassInderectInheritance2.propertyNonDefault
super@KotlinClassIndirectInheritance2.testNonDefault()
super@KotlinClassIndirectInheritance2.propertyNonDefault
}
}
}
@@ -296,11 +296,11 @@ class KotlinClassInderectInheritance2 : KotlinInterfaceInderectInheritance {
object {
fun run () {
super@KotlinClassInderectInheritance2.test()
super@KotlinClassInderectInheritance2.property
super@KotlinClassIndirectInheritance2.test()
super@KotlinClassIndirectInheritance2.property
super@KotlinClassInderectInheritance2.testNonDefault()
super@KotlinClassInderectInheritance2.propertyNonDefault
super@KotlinClassIndirectInheritance2.testNonDefault()
super@KotlinClassIndirectInheritance2.propertyNonDefault
}
}
return ""
@@ -311,10 +311,10 @@ fun test() {
KotlinClass().test()
KotlinClass().property
KotlinClass().propertyNonDefault
KotlinClassInderectInheritance2().test()
KotlinClassInderectInheritance2().testNonDefault()
KotlinClassInderectInheritance2().propertyyy
KotlinClassInderectInheritance2().propertyyyNonDefault
KotlinClassIndirectInheritance2().test()
KotlinClassIndirectInheritance2().testNonDefault()
KotlinClassIndirectInheritance2().propertyyy
KotlinClassIndirectInheritance2().propertyyyNonDefault
KotlinClass().test()
KotlinClass().testNonDefault()
@@ -25,8 +25,8 @@ public open class KotlinClass : KInterface {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public final class KotlinClassInderectInheritance : KotlinClass {
public constructor KotlinClassInderectInheritance()
public final class KotlinClassIndirectInheritance : KotlinClass {
public constructor KotlinClassIndirectInheritance()
@kotlin.jvm.JvmDefault public open override /*1*/ /*fake_override*/ val property: kotlin.String
public final val property2: kotlin.String
public open override /*1*/ /*fake_override*/ val propertyNonDefault: kotlin.String
@@ -40,8 +40,8 @@ public final class KotlinClassInderectInheritance : KotlinClass {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public final class KotlinClassInderectInheritance2 : KotlinInterfaceInderectInheritance {
public constructor KotlinClassInderectInheritance2()
public final class KotlinClassIndirectInheritance2 : KotlinInterfaceIndirectInheritance {
public constructor KotlinClassIndirectInheritance2()
@kotlin.jvm.JvmDefault public open override /*1*/ /*fake_override*/ val property: kotlin.String
public open override /*1*/ /*fake_override*/ val propertyNonDefault: kotlin.String
@kotlin.jvm.JvmDefault public open override /*1*/ /*fake_override*/ val propertyy: kotlin.String
@@ -75,7 +75,7 @@ public interface KotlinInterface : KInterface {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public interface KotlinInterfaceInderectInheritance : KotlinInterface {
public interface KotlinInterfaceIndirectInheritance : KotlinInterface {
@kotlin.jvm.JvmDefault public open override /*1*/ /*fake_override*/ val property: kotlin.String
public open override /*1*/ /*fake_override*/ val propertyNonDefault: kotlin.String
@kotlin.jvm.JvmDefault public open override /*1*/ /*fake_override*/ val propertyy: kotlin.String
@@ -46,14 +46,14 @@ interface KotlinInterface : JavaInterface {
}
}
interface KotlinInterfaceInderectInheritance : KotlinInterface {
interface KotlinInterfaceIndirectInheritance : KotlinInterface {
@JvmDefault
fun foooo() {
super.test()
object {
fun run () {
super@KotlinInterfaceInderectInheritance.test()
super@KotlinInterfaceIndirectInheritance.test()
}
}
}
@@ -65,7 +65,7 @@ interface KotlinInterfaceInderectInheritance : KotlinInterface {
object {
fun run () {
super@KotlinInterfaceInderectInheritance.test()
super@KotlinInterfaceIndirectInheritance.test()
}
}
return ""
@@ -98,14 +98,14 @@ open class KotlinClass : JavaInterface {
}
}
class KotlinClassInderectInheritance : KotlinClass() {
class KotlinClassIndirectInheritance : KotlinClass() {
fun foo2() {
super.test()
super.testOverride()
object {
fun run () {
super@KotlinClassInderectInheritance.test()
super@KotlinClassIndirectInheritance.test()
}
}
}
@@ -117,21 +117,21 @@ class KotlinClassInderectInheritance : KotlinClass() {
object {
fun run () {
super@KotlinClassInderectInheritance.test()
super@KotlinClassIndirectInheritance.test()
}
}
return ""
}
}
class KotlinClassInderectInheritance2 : KotlinInterfaceInderectInheritance {
class KotlinClassIndirectInheritance2 : KotlinInterfaceIndirectInheritance {
fun foo() {
super.test()
super.testOverride()
object {
fun run () {
super@KotlinClassInderectInheritance2.test()
super@KotlinClassIndirectInheritance2.test()
}
}
}
@@ -143,7 +143,7 @@ class KotlinClassInderectInheritance2 : KotlinInterfaceInderectInheritance {
object {
fun run () {
super@KotlinClassInderectInheritance2.test()
super@KotlinClassIndirectInheritance2.test()
}
}
return ""
@@ -153,11 +153,11 @@ class KotlinClassInderectInheritance2 : KotlinInterfaceInderectInheritance {
fun test() {
KotlinClass().foo()
KotlinClass().property
KotlinClassInderectInheritance2().foo()
KotlinClassInderectInheritance2().property
KotlinClassIndirectInheritance2().foo()
KotlinClassIndirectInheritance2().property
KotlinClass().test()
KotlinClass().property
KotlinClass().testOverride()
KotlinClassInderectInheritance().testOverride()
KotlinClassIndirectInheritance().testOverride()
}
@@ -21,8 +21,8 @@ public open class KotlinClass : JavaInterface {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public final class KotlinClassInderectInheritance : KotlinClass {
public constructor KotlinClassInderectInheritance()
public final class KotlinClassIndirectInheritance : KotlinClass {
public constructor KotlinClassIndirectInheritance()
public final override /*1*/ /*fake_override*/ val property: kotlin.String
public final val property2: kotlin.String
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
@@ -34,8 +34,8 @@ public final class KotlinClassInderectInheritance : KotlinClass {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public final class KotlinClassInderectInheritance2 : KotlinInterfaceInderectInheritance {
public constructor KotlinClassInderectInheritance2()
public final class KotlinClassIndirectInheritance2 : KotlinInterfaceIndirectInheritance {
public constructor KotlinClassIndirectInheritance2()
public final val property: kotlin.String
@kotlin.jvm.JvmDefault public open override /*1*/ /*fake_override*/ val propertyy: kotlin.String
@kotlin.jvm.JvmDefault public open override /*1*/ /*fake_override*/ val propertyyy: kotlin.String
@@ -59,7 +59,7 @@ public interface KotlinInterface : JavaInterface {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public interface KotlinInterfaceInderectInheritance : KotlinInterface {
public interface KotlinInterfaceIndirectInheritance : KotlinInterface {
@kotlin.jvm.JvmDefault public open override /*1*/ /*fake_override*/ val propertyy: kotlin.String
@kotlin.jvm.JvmDefault public open val propertyyy: kotlin.String
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean