Add first prototype of BindingContext implementation by FIR

Add ImportMemberIntention intention as a test.
In this commit all failed test were disabled, necessary fixes will be
added in the following commits
This commit is contained in:
Stanislav Erokhin
2021-05-07 14:40:52 +02:00
committed by teamcityserver
parent 6919f3dbb5
commit 7ac599520e
48 changed files with 1850 additions and 6 deletions
@@ -50,7 +50,7 @@ inline val FirCall.resolvedArgumentMapping: Map<FirExpression, FirValueParameter
else -> null
}
inline val FirCall.argumentMapping: Map<FirExpression, FirValueParameter>?
inline val FirCall.argumentMapping: LinkedHashMap<FirExpression, FirValueParameter>?
get() = when (val argumentList = argumentList) {
is FirResolvedArgumentList -> argumentList.mapping
is FirPartiallyResolvedArgumentList -> argumentList.mapping