[LL FIR] Remove unused "multi module lazy resolve" test data
- The test `AbstractFirMultiModuleLazyResolveTest` which used this test data was moved to `intellij` with the following commit: https://github.com/JetBrains/kotlin/commit/39fa2b0baf89b246348b1e9c33cfebfc3068c014 - In `intellij`, the test was later deleted with the following commit: https://github.com/JetBrains/intellij-community/commit/042a50dcdff50b0771e73c6948b020a5366ef137#diff-74605de26ac0b4a2a65e53e919001d51199769822a46620ac34ba7e08e85f5e0
This commit is contained in:
committed by
Space Team
parent
287e0909cc
commit
624164e183
-5
@@ -1,5 +0,0 @@
|
|||||||
package a;
|
|
||||||
|
|
||||||
public interface KtDeclaration extends KtElement {
|
|
||||||
|
|
||||||
}
|
|
||||||
-4
@@ -1,4 +0,0 @@
|
|||||||
package a
|
|
||||||
|
|
||||||
interface KtElement : KtPureElement {
|
|
||||||
}
|
|
||||||
-3
@@ -1,3 +0,0 @@
|
|||||||
package a
|
|
||||||
|
|
||||||
open class KtFile
|
|
||||||
-6
@@ -1,6 +0,0 @@
|
|||||||
package a;
|
|
||||||
|
|
||||||
public interface KtPureElement {
|
|
||||||
KtFile getContainingKtFile();
|
|
||||||
}
|
|
||||||
|
|
||||||
analysis/low-level-api-fir/testdata/multiModuleLazyResolve/javaExtendsKotlinExtendsJava/expected.txt
Vendored
-5
@@ -1,5 +0,0 @@
|
|||||||
FILE: main.kt
|
|
||||||
public final val R|a/KtElement|.fqNameWithoutCompanions: R|a/KtFile|
|
|
||||||
public get(): R|a/KtFile| {
|
|
||||||
^ this@R|/fqNameWithoutCompanions|.R|a/KtPureElement.containingKtFile|
|
|
||||||
}
|
|
||||||
analysis/low-level-api-fir/testdata/multiModuleLazyResolve/javaExtendsKotlinExtendsJava/main/main.kt
Vendored
-4
@@ -1,4 +0,0 @@
|
|||||||
import a.*
|
|
||||||
|
|
||||||
val KtDeclaration.fqNameWithoutCompanions: KtFile
|
|
||||||
get() = containingKtFile
|
|
||||||
-8
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"modules" : [
|
|
||||||
{ "name": "main", "dependsOn": ["dependency"] },
|
|
||||||
{ "name": "dependency" }
|
|
||||||
],
|
|
||||||
"fileToResolve": { "module": "main", "file": "main.kt" },
|
|
||||||
"fails": true
|
|
||||||
}
|
|
||||||
analysis/low-level-api-fir/testdata/multiModuleLazyResolve/whenWithHeiarchy/dependency/dependency.kt
Vendored
-8
@@ -1,8 +0,0 @@
|
|||||||
interface A
|
|
||||||
|
|
||||||
interface X : A
|
|
||||||
interface Y : A
|
|
||||||
|
|
||||||
interface F : Y, X
|
|
||||||
interface G : Y, X
|
|
||||||
|
|
||||||
-16
@@ -1,16 +0,0 @@
|
|||||||
FILE: main.kt
|
|
||||||
public final fun R|Y|.test(): R|kotlin/String?| {
|
|
||||||
lval a: R|kotlin/Int| = when (this@R|/test|) {
|
|
||||||
($subj$ is R|F|) -> {
|
|
||||||
Int(1)
|
|
||||||
}
|
|
||||||
($subj$ is R|G|) -> {
|
|
||||||
Int(2)
|
|
||||||
}
|
|
||||||
else -> {
|
|
||||||
^test Null(null)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
^test Null(null)
|
|
||||||
}
|
|
||||||
-8
@@ -1,8 +0,0 @@
|
|||||||
fun Y.test(): String? {
|
|
||||||
val a = when (this) {
|
|
||||||
is F -> 1
|
|
||||||
is G -> 2
|
|
||||||
else -> return null
|
|
||||||
}
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"modules" : [
|
|
||||||
{ "name": "main", "dependsOn": ["dependency"] },
|
|
||||||
{ "name": "dependency" }
|
|
||||||
],
|
|
||||||
"fileToResolve": { "module": "main", "file": "main.kt" }
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user