[fir2ir] Fix field-receiver extracting for evaluator

KT-61144
This commit is contained in:
Alexey Merkulov
2023-07-27 13:51:44 +02:00
committed by Space Team
parent c520aeb5aa
commit 35eca56d32
14 changed files with 121 additions and 8 deletions
@@ -262,6 +262,18 @@ public class FirIdeNormalAnalysisSourceModuleCompilerFacilityTestGenerated exten
runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/privateMemberCall.kt");
}
@Test
@TestMetadata("secondClassContextReceiver.kt")
public void testSecondClassContextReceiver() throws Exception {
runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/secondClassContextReceiver.kt");
}
@Test
@TestMetadata("singleClassContextReceiver.kt")
public void testSingleClassContextReceiver() throws Exception {
runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/singleClassContextReceiver.kt");
}
@Test
@TestMetadata("valueParameter.kt")
public void testValueParameter() throws Exception {