Escape special names with backticks in test data
#KT-51248
This commit is contained in:
committed by
Space
parent
4de9de5fc5
commit
918a91dbdf
@@ -3,19 +3,19 @@ package test
|
||||
public final class ConstructorTypeParamClassObjectConflict</*0*/ test> {
|
||||
/*primary*/ public constructor ConstructorTypeParamClassObjectConflict</*0*/ test>()
|
||||
public final val some: kotlin.Int
|
||||
public final fun <get-some>(): kotlin.Int
|
||||
public final fun `<get-some>`(): kotlin.Int
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
public final val test: kotlin.Int
|
||||
public final fun <get-test>(): kotlin.Int
|
||||
public final fun `<get-test>`(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
public final class ConstructorTypeParamClassObjectTypeConflict</*0*/ test> {
|
||||
/*primary*/ public constructor ConstructorTypeParamClassObjectTypeConflict</*0*/ test>()
|
||||
public final val some: test?
|
||||
public final fun <get-some>(): test?
|
||||
public final fun `<get-some>`(): test?
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
@@ -28,39 +28,39 @@ public final class ConstructorTypeParamClassObjectTypeConflict</*0*/ test> {
|
||||
public final class TestClassObjectAndClassConflict {
|
||||
/*primary*/ public constructor TestClassObjectAndClassConflict()
|
||||
public final val bla: kotlin.String
|
||||
public final fun <get-bla>(): kotlin.String
|
||||
public final fun `<get-bla>`(): kotlin.String
|
||||
public final val some: kotlin.String
|
||||
public final fun <get-some>(): kotlin.String
|
||||
public final fun `<get-some>`(): kotlin.String
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
public final val bla: kotlin.Int
|
||||
public final fun <get-bla>(): kotlin.Int
|
||||
public final fun `<get-bla>`(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
public final class TestConstructorParamClassObjectConflict {
|
||||
/*primary*/ public constructor TestConstructorParamClassObjectConflict(/*0*/ test: kotlin.String)
|
||||
public final val some: kotlin.String
|
||||
public final fun <get-some>(): kotlin.String
|
||||
public final fun `<get-some>`(): kotlin.String
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
public final val test: kotlin.Int
|
||||
public final fun <get-test>(): kotlin.Int
|
||||
public final fun `<get-test>`(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
public final class TestConstructorValClassObjectConflict {
|
||||
/*primary*/ public constructor TestConstructorValClassObjectConflict(/*0*/ test: kotlin.String)
|
||||
public final val some: kotlin.String
|
||||
public final fun <get-some>(): kotlin.String
|
||||
public final fun `<get-some>`(): kotlin.String
|
||||
public final val test: kotlin.String
|
||||
public final fun <get-test>(): kotlin.String
|
||||
public final fun `<get-test>`(): kotlin.String
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
public final val test: kotlin.Int
|
||||
public final fun <get-test>(): kotlin.Int
|
||||
public final fun `<get-test>`(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@ package test
|
||||
public final enum class EnumWithGenericConstructorParameter : kotlin.Enum<test.EnumWithGenericConstructorParameter> {
|
||||
/*primary*/ private constructor EnumWithGenericConstructorParameter(/*0*/ list: kotlin.collections.List<kotlin.String>?)
|
||||
public final override /*1*/ /*fake_override*/ val name: kotlin.String
|
||||
public final override /*1*/ /*fake_override*/ fun <get-name>(): kotlin.String
|
||||
public final override /*1*/ /*fake_override*/ fun `<get-name>`(): kotlin.String
|
||||
public final override /*1*/ /*fake_override*/ val ordinal: kotlin.Int
|
||||
public final override /*1*/ /*fake_override*/ fun <get-ordinal>(): kotlin.Int
|
||||
public final override /*1*/ /*fake_override*/ fun `<get-ordinal>`(): kotlin.Int
|
||||
protected final override /*1*/ /*fake_override*/ fun clone(): kotlin.Any
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.EnumWithGenericConstructorParameter): kotlin.Int
|
||||
protected/*protected and package*/ final override /*1*/ /*fake_override*/ /*isHiddenForResolutionEverywhereBesideSupercalls*/ fun finalize(): kotlin.Unit
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@ package test
|
||||
public final enum class EnumWithPrimitiveConstructorParameter : kotlin.Enum<test.EnumWithPrimitiveConstructorParameter> {
|
||||
/*primary*/ private constructor EnumWithPrimitiveConstructorParameter(/*0*/ b: kotlin.Boolean)
|
||||
public final override /*1*/ /*fake_override*/ val name: kotlin.String
|
||||
public final override /*1*/ /*fake_override*/ fun <get-name>(): kotlin.String
|
||||
public final override /*1*/ /*fake_override*/ fun `<get-name>`(): kotlin.String
|
||||
public final override /*1*/ /*fake_override*/ val ordinal: kotlin.Int
|
||||
public final override /*1*/ /*fake_override*/ fun <get-ordinal>(): kotlin.Int
|
||||
public final override /*1*/ /*fake_override*/ fun `<get-ordinal>`(): kotlin.Int
|
||||
protected final override /*1*/ /*fake_override*/ fun clone(): kotlin.Any
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.EnumWithPrimitiveConstructorParameter): kotlin.Int
|
||||
protected/*protected and package*/ final override /*1*/ /*fake_override*/ /*isHiddenForResolutionEverywhereBesideSupercalls*/ fun finalize(): kotlin.Unit
|
||||
|
||||
@@ -3,6 +3,6 @@ package test
|
||||
public object Obj {
|
||||
/*primary*/ private constructor Obj()
|
||||
public final val v: kotlin.String
|
||||
public final fun <get-v>(): kotlin.String
|
||||
public final fun `<get-v>`(): kotlin.String
|
||||
public final fun f(): kotlin.String
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ public final class Outer {
|
||||
public object Obj {
|
||||
/*primary*/ private constructor Obj()
|
||||
public final val v: kotlin.String
|
||||
public final fun <get-v>(): kotlin.String
|
||||
public final fun `<get-v>`(): kotlin.String
|
||||
public final fun f(): kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ public final class Outer {
|
||||
public object Obj {
|
||||
/*primary*/ private constructor Obj()
|
||||
public final val v: kotlin.String
|
||||
public final fun <get-v>(): kotlin.String
|
||||
public final fun `<get-v>`(): kotlin.String
|
||||
public final fun f(): kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ public object Outer {
|
||||
public object Obj {
|
||||
/*primary*/ private constructor Obj()
|
||||
public final val v: kotlin.String
|
||||
public final fun <get-v>(): kotlin.String
|
||||
public final fun `<get-v>`(): kotlin.String
|
||||
public final fun f(): kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
package test
|
||||
|
||||
public val x: kotlin.Int
|
||||
public fun <get-x>(): kotlin.Int
|
||||
public fun `<get-x>`(): kotlin.Int
|
||||
|
||||
public object Obj {
|
||||
/*primary*/ private constructor Obj()
|
||||
public final val v: kotlin.String
|
||||
public final fun <get-v>(): kotlin.String
|
||||
public final fun `<get-v>`(): kotlin.String
|
||||
public final fun f(): kotlin.String
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user