AA: special handling for converted constants

This commit is contained in:
Jinseong Jeon
2022-04-20 23:53:04 -07:00
committed by Ilya Kirillov
parent faf6939515
commit 61cca31b6b
11 changed files with 114 additions and 16 deletions
@@ -64,6 +64,18 @@ public class Fe10IdeNormalAnalysisSourceModuleCompileTimeConstantEvaluatorTestGe
runTest("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/integerLiteral_minusOne_justOne.kt");
}
@Test
@TestMetadata("integerLiteral_plusOne_entire.kt")
public void testIntegerLiteral_plusOne_entire() throws Exception {
runTest("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/integerLiteral_plusOne_entire.kt");
}
@Test
@TestMetadata("integerLiteral_plusOne_justOne.kt")
public void testIntegerLiteral_plusOne_justOne() throws Exception {
runTest("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/integerLiteral_plusOne_justOne.kt");
}
@Test
@TestMetadata("namedReference_const.kt")
public void testNamedReference_const() throws Exception {