Create From Usage: Quick-fix for value parameters

This commit is contained in:
Alexey Sedunov
2014-09-30 14:09:38 +04:00
parent 73fc984c4c
commit 6ad2157806
58 changed files with 726 additions and 2 deletions
@@ -0,0 +1,9 @@
// "Create parameter 'foo'" "false"
// ACTION: Split property declaration
// ERROR: Unresolved reference: foo
class A
fun test(a: A) {
val t: Int = a.<caret>foo
}