FIR LL API: resolve PSI elements to more specific FIR element
Compound access and implicit delegated constructor are mapped to FIR elements that are way too broad.
This commit is contained in:
committed by
Ilya Kirillov
parent
e8f1af6140
commit
bc95733818
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
fun test() {
|
||||
var i = 1
|
||||
<expr>i += 1</expr>
|
||||
}
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
expression: i += 1
|
||||
type: kotlin.Unit
|
||||
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
fun test() {
|
||||
var i = 1
|
||||
<expr>i--</expr>
|
||||
}
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
expression: i--
|
||||
type: kotlin.Int
|
||||
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
fun test() {
|
||||
var i = 1
|
||||
<expr>++i</expr>
|
||||
}
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
expression: ++i
|
||||
type: kotlin.Int
|
||||
Reference in New Issue
Block a user