Changed synthetic properties naming for getters starting with "is"

This commit is contained in:
Valentin Kipyatkov
2015-07-17 14:28:21 +03:00
parent cf2aa73ee6
commit b6027a0efe
16 changed files with 127 additions and 20 deletions
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun foo(thread: Thread) {
thread.<caret>isDaemon()
}
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun foo(thread: Thread) {
thread.<caret>isDaemon
}
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun foo(thread: Thread) {
thread.<caret>setDaemon(true)
}
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun foo(thread: Thread) {
thread.<caret>isDaemon = true
}