Add intentions to move property from/to primary constructor

#KT-4578 Fixed
This commit is contained in:
Vyacheslav Gerasimov
2017-03-18 23:15:46 +03:00
parent fef4c8ccd8
commit f60a7ffab0
32 changed files with 465 additions and 0 deletions
@@ -0,0 +1,2 @@
class TestClass(private val text: String = "Lorem Ipsum") {
}
@@ -0,0 +1,3 @@
class TestClass {
private val text = "Lorem Ipsum"
}
@@ -0,0 +1,5 @@
<html>
<body>
This intention moves property to primary constructor.
</body>
</html>