diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/funInCompanionObject.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/funInCompanionObject.kt deleted file mode 100644 index 8d952fcdcdc..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/funInCompanionObject.kt +++ /dev/null @@ -1,9 +0,0 @@ -class X { - companion object { - fun x() { - a - } - } -} - -// OUT_OF_BLOCK: false diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/localFun.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/localFun.kt deleted file mode 100644 index af38fb8e029..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/localFun.kt +++ /dev/null @@ -1,5 +0,0 @@ -fun x() { - fun a() = -} - -// OUT_OF_BLOCK: false diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/memberFunWithType.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/memberFunWithType.kt deleted file mode 100644 index dcf027fd8eb..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/memberFunWithType.kt +++ /dev/null @@ -1,7 +0,0 @@ -class A { - fun x() { - - } -} - -// OUT_OF_BLOCK: false diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/memberPropertyWithType.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/memberPropertyWithType.kt deleted file mode 100644 index 3577bc15371..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/memberPropertyWithType.kt +++ /dev/null @@ -1,7 +0,0 @@ -class A { - val x: Int = run { - - } -} - -// OUT_OF_BLOCK: false diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelExpressionBodyFunWithType.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelExpressionBodyFunWithType.kt deleted file mode 100644 index b62e4fefa36..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelExpressionBodyFunWithType.kt +++ /dev/null @@ -1,3 +0,0 @@ -fun foo(): Int = 42 - -// OUT_OF_BLOCK: false diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelExpressionBodyFunWithoutType.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelExpressionBodyFunWithoutType.kt deleted file mode 100644 index 00bc44b5979..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelExpressionBodyFunWithoutType.kt +++ /dev/null @@ -1,3 +0,0 @@ -fun foo() = 42 - -// OUT_OF_BLOCK: true \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelFunWithType.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelFunWithType.kt deleted file mode 100644 index 93458daa087..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelFunWithType.kt +++ /dev/null @@ -1,6 +0,0 @@ -fun foo(): Int { - println("") - return 10 -} - -// OUT_OF_BLOCK: false \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelUnitFun.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelUnitFun.kt deleted file mode 100644 index 2e345179be7..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topLevelUnitFun.kt +++ /dev/null @@ -1,5 +0,0 @@ -fun foo() { - println("") -} - -// OUT_OF_BLOCK: false diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInGetter.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInGetter.kt deleted file mode 100644 index 5a5dc8777a1..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInGetter.kt +++ /dev/null @@ -1,3 +0,0 @@ -val x: Int get() = y - -// OUT_OF_BLOCK: false diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInGetterOnNextLine.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInGetterOnNextLine.kt deleted file mode 100644 index 5db82bd97b7..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInGetterOnNextLine.kt +++ /dev/null @@ -1,4 +0,0 @@ -val x: Int - get() = y - -// OUT_OF_BLOCK: false diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInInititalzer.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInInititalzer.kt deleted file mode 100644 index f5d54824464..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInInititalzer.kt +++ /dev/null @@ -1,3 +0,0 @@ -val x: Int = y - -// OUT_OF_BLOCK: false diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInSetter.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInSetter.kt deleted file mode 100644 index 4c8e7b42452..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithTypeInSetter.kt +++ /dev/null @@ -1,4 +0,0 @@ -val x: Int - set(value) = y - -// OUT_OF_BLOCK: false diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithoutTypeInGetter.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithoutTypeInGetter.kt deleted file mode 100644 index e4d46a5e98c..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithoutTypeInGetter.kt +++ /dev/null @@ -1,3 +0,0 @@ -val x get() = y - -// OUT_OF_BLOCK: true diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithoutTypeInInititalzer.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithoutTypeInInititalzer.kt deleted file mode 100644 index 5b5cce7d867..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithoutTypeInInititalzer.kt +++ /dev/null @@ -1,3 +0,0 @@ -val x = y - -// OUT_OF_BLOCK: true diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithoutTypeInSetter.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithoutTypeInSetter.kt deleted file mode 100644 index 2723c109c1c..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/topPropertyWithoutTypeInSetter.kt +++ /dev/null @@ -1,8 +0,0 @@ -val x - get() = 1 - set(value) { - - } - -// OUT_OF_BLOCK: true -// TODO should not be out of block diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionAnnotation.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionAnnotation.kt deleted file mode 100644 index c139bb121a2..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionAnnotation.kt +++ /dev/null @@ -1,6 +0,0 @@ -@Ann -fun foo() { - println("") -} - -// OUT_OF_BLOCK: true diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionAnnotationParameter.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionAnnotationParameter.kt deleted file mode 100644 index b207535eb5f..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionAnnotationParameter.kt +++ /dev/null @@ -1,6 +0,0 @@ -@Ann() -fun foo() { - println("") -} - -// OUT_OF_BLOCK: true diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionModifiers.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionModifiers.kt deleted file mode 100644 index 91a064a5b98..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionModifiers.kt +++ /dev/null @@ -1,5 +0,0 @@ - fun foo() { - println("") -} - -// OUT_OF_BLOCK: true diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionName.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionName.kt deleted file mode 100644 index b1176d98c1c..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionName.kt +++ /dev/null @@ -1,5 +0,0 @@ -fun foo() { - println("") -} - -// OUT_OF_BLOCK: true diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionParams.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionParams.kt deleted file mode 100644 index 1498070df38..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionParams.kt +++ /dev/null @@ -1,5 +0,0 @@ -fun foo() { - println("") -} - -// OUT_OF_BLOCK: true diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionParamsType.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionParamsType.kt deleted file mode 100644 index bf7f33f6530..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionParamsType.kt +++ /dev/null @@ -1,5 +0,0 @@ -fun foo(x: In) { - println("") -} - -// OUT_OF_BLOCK: true diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionReturnType.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionReturnType.kt deleted file mode 100644 index 68bf647b51d..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionReturnType.kt +++ /dev/null @@ -1,5 +0,0 @@ -fun foo(): In { - println("") -} - -// OUT_OF_BLOCK: true diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionTypeParams.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionTypeParams.kt deleted file mode 100644 index 7ea9b3f3cd9..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/outOfBlockProjectWide/typeInFunctionTypeParams.kt +++ /dev/null @@ -1,5 +0,0 @@ -fun >foo() { - println("") -} - -// OUT_OF_BLOCK: true diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/anotherModule/AnotherModuleSamePackageDeclarations.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/anotherModule/AnotherModuleSamePackageDeclarations.kt deleted file mode 100644 index 4e75fd12558..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/anotherModule/AnotherModuleSamePackageDeclarations.kt +++ /dev/null @@ -1,5 +0,0 @@ -class ClassAnotherModuleInheritorA: SealedClass() -class ClassAnotherModuleInheritorB: SealedClass() - -class InterfaceAnotherModuleInheritorA: SealedInterface -class InterfaceAnotherModuleInheritorB: SealedInterface \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/expected.txt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/expected.txt deleted file mode 100644 index 698f1d19a11..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/expected.txt +++ /dev/null @@ -1,18 +0,0 @@ -ClassSameFileInheritorA -ClassSameFileInheritorB -ClassSameFileInheritorC -ClassSamePackageInheritorA -ClassSamePackageInheritorB -InterfaceSameFileInheritorA -InterfaceSameFileInheritorB -InterfaceSameFileInheritorC -InterfaceSamePackageInheritorA -InterfaceSamePackageInheritorB -NonSealedClass.NestedSealedInheritorA -NonSealedClass.NestedSealedInheritorB -SealedClass.NestedInheritorA -SealedClass.NestedInheritorA.NestedNestedInheritorA -SealedClass.NestedInheritorA.NestedNestedInheritorB -SealedInterface.NestedInheritorA -SealedInterface.NestedInheritorA.NestedNestedInheritorA -SealedInterface.NestedInheritorA.NestedNestedInheritorB \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/main/SamePackageDeclarations.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/main/SamePackageDeclarations.kt deleted file mode 100644 index f6d4fc9d786..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/main/SamePackageDeclarations.kt +++ /dev/null @@ -1,5 +0,0 @@ -class ClassSamePackageInheritorA: SealedClass() -class ClassSamePackageInheritorB: SealedClass() - -class InterfaceSamePackageInheritorA: SealedInterface -class InterfaceSamePackageInheritorB: SealedInterface diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/main/anotherpackage/AnotherPackageDeclarations.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/main/anotherpackage/AnotherPackageDeclarations.kt deleted file mode 100644 index f39899b41e3..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/main/anotherpackage/AnotherPackageDeclarations.kt +++ /dev/null @@ -1,7 +0,0 @@ -package anotherpackage - -class ClassAnotherPackageInheritorA: SealedClass() -class ClassAnotherPackageInheritorB: SealedClass() - -class InterfaceAnotherPackageInheritorA: SealedInterface -class InterfaceAnotherPackageInheritorB: SealedInterface \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/main/main.kt b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/main/main.kt deleted file mode 100644 index 1010543c424..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/main/main.kt +++ /dev/null @@ -1,29 +0,0 @@ -sealed class SealedClass { // (1): top level sealed class - class NestedInheritorA: SealedClass() { - class NestedNestedInheritorA: SealedClass() - object NestedNestedInheritorB: SealedClass() - } -} - -class ClassSameFileInheritorA: SealedClass() -class ClassSameFileInheritorB: SealedClass() -object ClassSameFileInheritorC: SealedClass() - -sealed interface SealedInterface { // (2): top level sealed interface - class NestedInheritorA: SealedInterface { - interface NestedNestedInheritorA: SealedInterface - object NestedNestedInheritorB: SealedInterface - } -} - -class InterfaceSameFileInheritorA: SealedInterface -class InterfaceSameFileInheritorB: SealedInterface -object InterfaceSameFileInheritorC: SealedInterface - - -class NonSealedClass { - sealed class NestedSealedClass // (3): nested sealed class - sealed interface NestedSealedInterface // (4): nested sealed interface - class NestedSealedInheritorA: NestedSealedClass() - class NestedSealedInheritorB: NestedSealedInterface -} \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/structure.json b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/structure.json deleted file mode 100644 index 991c4e67b28..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/resolveSealed/directInheritors/structure.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "modules" : [ - { "name": "main", "dependsOn": ["anotherModule"] }, - { "name": "anotherModule"} - ], - "fileToResolve": { "module": "main", "file": "main.kt" } -} \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTree/structure.json b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTree/structure.json deleted file mode 100644 index 19e8f739669..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTree/structure.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "modules" : [ - { "name": "A", "dependsOn": ["B", "C"] }, - { "name": "B", "dependsOn": ["D", "E"] }, - { "name": "C", "dependsOn": ["F", "G"] }, - { "name": "D", "dependsOn": [] }, - { "name": "E", "dependsOn": [] }, - { "name": "F", "dependsOn": [] }, - { "name": "G", "dependsOn": [] } - ], - "rootModule": "A", - "modulesToMakeOOBM": ["F"], - "expectedInvalidatedModules": ["A", "C", "F"] -} \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTreeNoInvalidated/structure.json b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTreeNoInvalidated/structure.json deleted file mode 100644 index ef47e4c728e..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTreeNoInvalidated/structure.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "modules" : [ - { "name": "A", "dependsOn": ["B", "C"] }, - { "name": "B", "dependsOn": ["D", "E"] }, - { "name": "C", "dependsOn": ["F", "G"] }, - { "name": "D", "dependsOn": [] }, - { "name": "E", "dependsOn": [] }, - { "name": "F", "dependsOn": [] }, - { "name": "G", "dependsOn": [] } - ], - "rootModule": "A", - "modulesToMakeOOBM": [], - "expectedInvalidatedModules": [] -} \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTreeWithAdditionalEdge/structure.json b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTreeWithAdditionalEdge/structure.json deleted file mode 100644 index 3f37c42fa75..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTreeWithAdditionalEdge/structure.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "modules" : [ - { "name": "A", "dependsOn": ["B", "C"] }, - { "name": "B", "dependsOn": ["D", "E"] }, - { "name": "C", "dependsOn": ["F", "G"] }, - { "name": "D", "dependsOn": [] }, - { "name": "E", "dependsOn": [] }, - { "name": "F", "dependsOn": ["B"] }, - { "name": "G", "dependsOn": [] } - ], - "rootModule": "A", - "modulesToMakeOOBM": ["E"], - "expectedInvalidatedModules": ["A", "B", "C", "E", "F"] -} \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTreeWithInvalidInRoot/structure.json b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTreeWithInvalidInRoot/structure.json deleted file mode 100644 index c85989c8dd2..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/binaryTreeWithInvalidInRoot/structure.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "modules" : [ - { "name": "A", "dependsOn": ["B", "C"] }, - { "name": "B", "dependsOn": ["D", "E"] }, - { "name": "C", "dependsOn": ["F", "G"] }, - { "name": "D", "dependsOn": [] }, - { "name": "E", "dependsOn": [] }, - { "name": "F", "dependsOn": [] }, - { "name": "G", "dependsOn": [] } - ], - "rootModule": "A", - "modulesToMakeOOBM": ["A"], - "expectedInvalidatedModules": ["A"] -} \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/linear/structure.json b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/linear/structure.json deleted file mode 100644 index a5a7b0ec05a..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/linear/structure.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "modules" : [ - { "name": "A", "dependsOn": ["B"] }, - { "name": "B", "dependsOn": ["C"] }, - { "name": "C", "dependsOn": ["D"] }, - { "name": "D", "dependsOn": ["E"] }, - { "name": "E", "dependsOn": [] } - ], - "rootModule": "A", - "modulesToMakeOOBM": ["C"], - "expectedInvalidatedModules": ["A", "B", "C"] -} \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/rhombus/structure.json b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/rhombus/structure.json deleted file mode 100644 index 0a76c3f8d05..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/rhombus/structure.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "modules" : [ - { "name": "A", "dependsOn": ["B", "C"] }, - { "name": "B", "dependsOn": ["D"] }, - { "name": "C", "dependsOn": ["D"] }, - { "name": "D", "dependsOn": [] } - ], - "rootModule": "A", - "modulesToMakeOOBM": ["D"], - "expectedInvalidatedModules": ["A", "B", "C", "D"] -} \ No newline at end of file diff --git a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/rhombusWithTwoInvalid/structure.json b/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/rhombusWithTwoInvalid/structure.json deleted file mode 100644 index 9ce45934178..00000000000 --- a/idea/idea-frontend-fir/idea-fir-low-level-api/testdata/sessionInvalidation/rhombusWithTwoInvalid/structure.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "modules" : [ - { "name": "A", "dependsOn": ["B", "C"] }, - { "name": "B", "dependsOn": ["D"] }, - { "name": "C", "dependsOn": ["D"] }, - { "name": "D", "dependsOn": [] } - ], - "rootModule": "A", - "modulesToMakeOOBM": ["C", "D"], - "expectedInvalidatedModules": ["A", "B", "C", "D"] -} \ No newline at end of file