Create Function From Usage: Quick-fix for functions invoked via call expressions

This commit is contained in:
Alexey Sedunov
2014-09-24 18:16:29 +04:00
parent 22e3557895
commit 6043c6d0a7
49 changed files with 694 additions and 103 deletions
@@ -0,0 +1,9 @@
// "Create function 'foo' from usage" "true"
class A<T>(val n: T) {
inner class B<U>(val m: U) {
fun test(): A<Int> {
return this@A.<caret>foo(2, "2")
}
}
}