Fixed generated text from jvm classfile, when quotes is required
#KT-34759 Fixed
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
// IntelliJ API Decompiler stub source generated from a class file
|
||||
// Implementation of methods is not available
|
||||
|
||||
package test
|
||||
|
||||
public final class EnumWithQuotes public constructor() {
|
||||
internal final class B public constructor() {
|
||||
private final enum class Zoo private constructor() : kotlin.Enum<test.EnumWithQuotes.B.Zoo> {
|
||||
Bear,
|
||||
|
||||
`Bear+`,
|
||||
|
||||
`Polar Bear`,
|
||||
|
||||
Panda;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
class EnumWithQuotes {
|
||||
internal class B {
|
||||
private enum class Zoo {
|
||||
Bear, `Bear+`, `Polar Bear`, Panda
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user