Changed highlighting range and attributes of useless elvis operator

This commit is contained in:
Valentin Kipyatkov
2015-06-01 22:22:17 +03:00
parent 11290ae9e7
commit aefe0dd192
14 changed files with 26 additions and 21 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
// "Remove elvis operator" "true"
fun foo(a: String) {
val b : String = <caret>a ?: "s"
val b : String = a <caret>?: "s"
}