edd269f5ff
Possible NPE in getNextSiblingIgnoringWhitespace fixed. Some warnings also removed. Last comma is replaced by semicolon. Comments are taken into account.
6 lines
130 B
Plaintext
6 lines
130 B
Plaintext
// "Insert lacking comma(s) / semicolon(s)" "true"
|
|
|
|
enum class MyEnum(val z: Int) {
|
|
A(3), B(7), C(12);
|
|
fun foo() = z * 2
|
|
} |