Rename: this object, receiver argument -> dispatch receiver, extension receiver

This commit is contained in:
Svetlana Isakova
2014-09-29 21:09:07 +04:00
parent 1d2d2f4845
commit 20f3403c80
185 changed files with 681 additions and 687 deletions
@@ -0,0 +1,9 @@
class A
class B {
fun foo() = 2
fun A.bar() = `A.foo`foo()
}
~A.foo~fun A.foo() = 1