[FIR IDE] Add a special type of KtCall for generic type qualifiers

^KTIJ-21672 Fixed
This commit is contained in:
Roman Golyshev
2022-06-14 16:15:02 +04:00
committed by teamcity
parent fe06070d23
commit 581ae5fcb7
10 changed files with 129 additions and 3 deletions
@@ -0,0 +1,9 @@
package test
class Test<T> {
fun foo() {}
}
class Bar
val bar = <expr>Test<Bar></expr>::foo
@@ -0,0 +1,3 @@
KtSuccessCallInfo:
call = KtGenericTypeQualifier:
qualifier = Test<Bar>
@@ -0,0 +1,9 @@
package test
class Test<T> {
fun foo() {}
}
class Bar
val bar = test.<expr>Test<Bar></expr>::foo
@@ -0,0 +1,3 @@
KtSuccessCallInfo:
call = KtGenericTypeQualifier:
qualifier = test.Test<Bar>