Deprecated conventions (get -> getValue, plus -> unaryPlus) quickfix

This commit is contained in:
Yan Zhulanow
2015-10-12 18:08:07 +03:00
parent f9e89596fd
commit 528482f625
11 changed files with 138 additions and 2 deletions
@@ -0,0 +1,8 @@
// "Rename to 'getValue'" "true"
class CustomDelegate
operator fun CustomDelegate.get(thisRef: Any?, prop: PropertyMetadata): String = ""
class Example {
val a: String by <caret>CustomDelegate()
}