robin
03/15/2017, 3:27 PMfoo.bar()
foo.baz()
foo.abc()
<http://foo.xyz|foo.xyz>()
with an equivalent apply
-block like this?
foo.apply {
bar()
baz()
abc()
xyz()
}
I'm imagining like a "replace all function calls on this receiver with apply-block"-intention when the cursor is on the foo
variable.