e7635652bc
If detected unfinished expression it passed through, added warning on action "Convert Java to Kotlin", if Java files contains syntax errors.
8 lines
164 B
Kotlin
Vendored
8 lines
164 B
Kotlin
Vendored
// ERROR: The expression cannot be a selector (occur after a dot)
|
|
class JavaClass {
|
|
var v = ""
|
|
fun m(s: String) {
|
|
s.
|
|
this.v.
|
|
}
|
|
} |