FIR IDE: add completion support to classes and to type aliases

This commit is contained in:
Ilya Kirillov
2021-04-19 20:15:21 +02:00
committed by TeamCityServer
parent a5c33c8d42
commit da6c5e13d5
30 changed files with 504 additions and 34 deletions
@@ -0,0 +1,7 @@
class X {
init {
val y = 1
<caret>
}
}
// EXIST: y
@@ -0,0 +1,9 @@
class X {
val x: Int = 10
init {
<caret>
}
}
// EXIST: x
// FIR_COMPARISON