New Intention Action: Replace a dot-qualified function call with an infix function call.

This commit is contained in:
Pradyoth Kukkapalli
2014-02-13 23:52:31 -05:00
parent 5a1f98041e
commit 44234c7c0a
30 changed files with 279 additions and 1 deletions
@@ -0,0 +1,9 @@
class Foo {
fun foo(x: Int) {
println("lol")
}
}
fun bar(baz: Foo) {
baz.<caret>foo(x = 1)
}