FIR IDE: Add descriptions for HLAddAccessorIntentions (copied from FE

1.0 implementations).
This commit is contained in:
Mark Punzalan
2021-06-10 21:01:27 +00:00
committed by TeamCityServer
parent 9b5f754e75
commit 235f4200df
9 changed files with 29 additions and 0 deletions
@@ -0,0 +1,5 @@
var x = 1
<spot>get() = field
set(value) {
field = value
}</spot>
@@ -0,0 +1,5 @@
<html>
<body>
This intention adds a getter and a setter for a property.
</body>
</html>
@@ -0,0 +1,2 @@
val x = 1
<spot>get() = field</spot>
@@ -0,0 +1,5 @@
<html>
<body>
This intention adds a property getter.
</body>
</html>
@@ -0,0 +1,4 @@
var x = 1
<spot>set(value) {
field = value
}</spot>
@@ -0,0 +1,5 @@
<html>
<body>
This intention adds a property setter.
</body>
</html>