edd269f5ff
Possible NPE in getNextSiblingIgnoringWhitespace fixed. Some warnings also removed. Last comma is replaced by semicolon. Comments are taken into account.
11 lines
216 B
Plaintext
11 lines
216 B
Plaintext
// "Insert lacking comma(s) / semicolon(s)" "true"
|
|
|
|
enum class MyEnum {
|
|
A {
|
|
override fun foo(): Int = 13
|
|
},
|
|
B, C<caret> {
|
|
override fun foo(): Int = 23
|
|
};
|
|
open fun foo(): Int = 42
|
|
} |