This commit is contained in:
svtk
2011-10-25 17:40:36 +04:00
parent 2984cfa959
commit f7950f9469
7 changed files with 11 additions and 11 deletions
@@ -1,4 +1,4 @@
// "Replace to dot call" "true"
// "Replace with dot call" "true"
fun foo(a: Any) {
<caret>a.equals(0)
}
@@ -1,4 +1,4 @@
// "Replace to dot call" "true"
// "Replace with dot call" "true"
fun foo(a: Any) {
when (a) {
.equals(0) => true
@@ -1,4 +1,4 @@
// "Replace to dot call" "true"
// "Replace with dot call" "true"
fun foo(a: Any) {
a<caret>?.equals(0)
}
@@ -1,4 +1,4 @@
// "Replace to dot call" "true"
// "Replace with dot call" "true"
fun foo(a: Any) {
when (a) {
<caret>?.equals(0) => true