[FIR] Reorganize modules of raw fir builders

This commit is contained in:
Dmitriy Novozhilov
2020-03-25 12:20:24 +03:00
parent 0d6bb33f49
commit 6c9dd8bb22
161 changed files with 419 additions and 359 deletions
@@ -19816,6 +19816,16 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/properties/classFieldInsideNested.kt");
}
@TestMetadata("classFieldInsideNestedLambda.kt")
public void testClassFieldInsideNestedLambda() throws Exception {
runTest("compiler/testData/codegen/box/properties/classFieldInsideNestedLambda.kt");
}
@TestMetadata("classFieldInsideNestedNestedLambda.kt")
public void testClassFieldInsideNestedNestedLambda() throws Exception {
runTest("compiler/testData/codegen/box/properties/classFieldInsideNestedNestedLambda.kt");
}
@TestMetadata("classObjectProperties.kt")
public void testClassObjectProperties() throws Exception {
runTest("compiler/testData/codegen/box/properties/classObjectProperties.kt");
@@ -533,13 +533,13 @@ fun main(args: Array<String>) {
}
}
testGroup("compiler/fir/psi2fir/tests", "compiler/fir/psi2fir/testData") {
testGroup("compiler/fir/raw-fir/psi2fir/tests", "compiler/fir/raw-fir/psi2fir/testData") {
testClass<AbstractRawFirBuilderTestCase> {
model("rawBuilder", testMethod = "doRawFirTest")
}
}
testGroup("compiler/fir/lightTree/tests", "compiler/fir/psi2fir/testData") {
testGroup("compiler/fir/raw-fir/light-tree2fir/tests", "compiler/fir/raw-fir/psi2fir/testData") {
testClass<AbstractLightTree2FirConverterTestCase> {
model("rawBuilder")
}
@@ -609,7 +609,7 @@ fun main(args: Array<String>) {
}
}
testGroup("compiler/visualizer/tests", "compiler/fir/psi2fir/testData") {
testGroup("compiler/visualizer/tests", "compiler/fir/raw-fir/psi2fir/testData") {
testClass<AbstractPsiVisualizer>("PsiVisualizerForRawFirDataGenerated") {
model("rawBuilder", testMethod = "doFirBuilderDataTest")
}