Uast: fixes for Enum identifiers (KT-35432)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public enum Style {
|
||||
@null SYSTEM("system")
|
||||
@null USER("user")
|
||||
@null INTERNAL("internal")
|
||||
@null UNKNOWN(null)
|
||||
@org.jetbrains.annotations.Nullable private final var value: java.lang.String
|
||||
public final fun getValue() : java.lang.String = UastEmptyExpression
|
||||
private fun Style(@org.jetbrains.annotations.Nullable value: java.lang.String) = UastEmptyExpression
|
||||
}
|
||||
Reference in New Issue
Block a user