FIR IDE: introduce KtFirArrayAccessReference

This commit is contained in:
Ilya Kirillov
2020-07-13 15:28:11 +03:00
parent 22054c8507
commit 0870ded054
10 changed files with 108 additions and 4 deletions
@@ -139,6 +139,9 @@ sealed class FirFakeSourceElementKind : FirSourceElementKind() {
// where `val $subj = a` has a fake source
object WhenGeneratedSubject : FirFakeSourceElementKind()
// list[0] -> list.get(0) where name reference will have a fake source element
object ArrayAccessNameReference : FirFakeSourceElementKind()
// super.foo() --> super<Supertype>.foo()
// where `Supertype` has a fake source
object SuperCallImplicitType : FirFakeSourceElementKind()