Intentions: Implement 'Add val/var to primary constructor parameter' intention

#KT-4038 In Progress
This commit is contained in:
Alexey Sedunov
2015-12-23 15:03:19 +03:00
parent 5dcf531048
commit 6978d842fb
16 changed files with 174 additions and 10 deletions
@@ -0,0 +1 @@
class Foo(n: Int, <spot>val s</spot>: String)
@@ -0,0 +1 @@
class Foo(n: Int, <spot>s</spot>: String)
@@ -0,0 +1,5 @@
<html>
<body>
This intention adds val/var keyword to the primary constructor parameter effectively making it a property.
</body>
</html>