FIR IDE: Add applicability range to HLAddAccessorIntention (copied from

FE 1.0's logic) and actually check the range in AbstractHLIntention.
This commit is contained in:
Mark Punzalan
2021-06-09 10:02:53 +00:00
committed by TeamCityServer
parent a497dd1d31
commit 91e62832ee
7 changed files with 51 additions and 3 deletions
@@ -0,0 +1,4 @@
// IS_APPLICABLE: false
class Test {
var x = <caret>1
}
@@ -0,0 +1,4 @@
// IS_APPLICABLE: false
class Test {
val x = <caret>1
}
@@ -0,0 +1,4 @@
// IS_APPLICABLE: false
class Test {
var x = <caret>1
}