Partial body resolve works for property accessor body
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
var prop: Int
|
||||
get() {
|
||||
print("get")
|
||||
val v = 1
|
||||
<caret>v
|
||||
return 1
|
||||
}
|
||||
set {
|
||||
print("set")
|
||||
val v = 2
|
||||
print("yes")
|
||||
}
|
||||
Reference in New Issue
Block a user