FIR IDE: introduce KtFirArrayAccessReference
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
fun a () {
|
||||
val list = mutableListOf(1)
|
||||
println(list<caret>[0])
|
||||
}
|
||||
|
||||
// REF: (in kotlin.collections.List).get(kotlin.Int)
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
fun a () {
|
||||
val list = mutableListOf(1)
|
||||
list<caret>[0] = 1
|
||||
}
|
||||
|
||||
// REF: (in kotlin.collections.MutableList).set(kotlin.Int, E)
|
||||
|
||||
Reference in New Issue
Block a user