Shorten References: Support 'this' simplification

This commit is contained in:
Alexey Sedunov
2015-01-15 16:06:38 +03:00
parent 3a7ae4303a
commit e68481557e
18 changed files with 208 additions and 17 deletions
@@ -0,0 +1,3 @@
class A(val n: Int) {
fun foo(n: Int): Int = <selection>this.n + 1</selection>
}