1a312140e9
Grammar changed accordingly. Semicolons prohibited after an entry except the last one. Only one initializer is allowed per entry. EnumReferenceExpression AST node introduced. Some tests fixed, a pair of new tests written. Kotlin code inside project fixed. Formatter and intendation tests fixed accordingly. Stub version is incremented.
9 lines
118 B
Kotlin
Vendored
9 lines
118 B
Kotlin
Vendored
// SET_TRUE: ALIGN_MULTILINE_EXTENDS_LIST
|
|
|
|
interface A1
|
|
|
|
enum class EnumTest {
|
|
ENTRY: EnumTest(),
|
|
<caret>A1
|
|
}
|