FIR IDE: add intention to add custom accessor to uninitliazed property

This commit is contained in:
Tianyu Geng
2021-03-28 20:32:28 -07:00
committed by Ilya Kirillov
parent 78f450a6ef
commit 4d505f4393
16 changed files with 112 additions and 14 deletions
+1 -1
View File
@@ -2,4 +2,4 @@
// WITH_RUNTIME
class Test {
val x: Int<caret>
}
}
+1 -1
View File
@@ -5,4 +5,4 @@ class Test {
get() {
<caret>TODO()
}
}
}
+1 -1
View File
@@ -2,4 +2,4 @@
// WITH_RUNTIME
class Test {
var x: Int<caret>
}
}
+1 -1
View File
@@ -6,4 +6,4 @@ class Test {
<caret>TODO()
}
set(value) {}
}
}
@@ -4,4 +4,5 @@ class Test {
get() {
return 1
}
}
}
/* IGNORE_FIR */
@@ -5,4 +5,5 @@ class Test {
return 1
}
set(value) {<caret>}
}
}
/* IGNORE_FIR */
@@ -3,4 +3,5 @@
class Test {
var x: Int<caret>
set(value) {}
}
}
/* IGNORE_FIR */
@@ -6,4 +6,5 @@ class Test {
<caret>TODO()
}
set(value) {}
}
}
/* IGNORE_FIR */