[FIR builder] add test for vararg parameter without type
^KT-61422
This commit is contained in:
committed by
Space Team
parent
2566dabfce
commit
c0c1966555
+24
@@ -378,12 +378,24 @@ public class FirOutOfContentRootLazyBodiesCalculatorTestGenerated extends Abstra
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructor.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorVal.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorVal() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorVal.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInSecondaryConstructor.kt")
|
||||
public void testNoParameterTypRefInSecondaryConstructor() throws Exception {
|
||||
@@ -395,6 +407,18 @@ public class FirOutOfContentRootLazyBodiesCalculatorTestGenerated extends Abstra
|
||||
public void testNoParameterTypRefInSetter() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInSetter.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+24
@@ -378,12 +378,24 @@ public class FirSourceLazyBodiesCalculatorTestGenerated extends AbstractFirSourc
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructor.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorVal.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorVal() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorVal.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInSecondaryConstructor.kt")
|
||||
public void testNoParameterTypRefInSecondaryConstructor() throws Exception {
|
||||
@@ -395,6 +407,18 @@ public class FirSourceLazyBodiesCalculatorTestGenerated extends AbstractFirSourc
|
||||
public void testNoParameterTypRefInSetter() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInSetter.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+20
@@ -347,11 +347,21 @@ public class LightTree2FirConverterTestCaseGenerated extends AbstractLightTree2F
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructor.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorVal.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorVal() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorVal.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInSecondaryConstructor.kt")
|
||||
public void testNoParameterTypRefInSecondaryConstructor() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInSecondaryConstructor.kt");
|
||||
@@ -361,6 +371,16 @@ public class LightTree2FirConverterTestCaseGenerated extends AbstractLightTree2F
|
||||
public void testNoParameterTypRefInSetter() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInSetter.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
class X(vararg x) {}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
FILE: noParameterTypRefInPrimaryConstructorWithVararg.kt
|
||||
public? final? class X : R|kotlin/Any| {
|
||||
public? constructor(vararg x: <ERROR TYPE REF: No type for parameter>): R|X| {
|
||||
LAZY_super<R|kotlin/Any|>
|
||||
}
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
FILE: noParameterTypRefInPrimaryConstructorWithVararg.kt
|
||||
public? final? class X : R|kotlin/Any| {
|
||||
public? [ContainingClassKey=X] constructor(vararg x: <ERROR TYPE REF: No type for parameter>): R|X| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
class X(vararg val x) {}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
FILE: noParameterTypRefInPrimaryConsturctorValWithVararg.kt
|
||||
public? final? class X : R|kotlin/Any| {
|
||||
public? constructor(vararg x: <ERROR TYPE REF: No type for parameter>): R|X| {
|
||||
LAZY_super<R|kotlin/Any|>
|
||||
}
|
||||
|
||||
public? final? val x: <ERROR TYPE REF: No type for parameter> = R|<local>/x|
|
||||
public? get(): <ERROR TYPE REF: No type for parameter>
|
||||
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
FILE: noParameterTypRefInPrimaryConsturctorValWithVararg.kt
|
||||
public? final? class X : R|kotlin/Any| {
|
||||
public? [ContainingClassKey=X] constructor([CorrespondingProperty=/X.x] vararg x: <ERROR TYPE REF: No type for parameter>): R|X| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
public? final? [IsFromPrimaryConstructor=true, IsFromVarargKey=true] val x: <ERROR TYPE REF: No type for parameter> = R|<local>/x|
|
||||
public? [ContainingClassKey=X] get(): <ERROR TYPE REF: No type for parameter>
|
||||
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
class X(vararg x:) {}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
FILE: uncompletedTypRefInPrimaryConstructorWithVararg.kt
|
||||
public? final? class X : R|kotlin/Any| {
|
||||
public? constructor(vararg x: <ERROR TYPE REF: Incomplete code>): R|X| {
|
||||
LAZY_super<R|kotlin/Any|>
|
||||
}
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
FILE: uncompletedTypRefInPrimaryConstructorWithVararg.kt
|
||||
public? final? class X : R|kotlin/Any| {
|
||||
public? [ContainingClassKey=X] constructor(vararg x: <ERROR TYPE REF: Incomplete code>): R|X| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
class X(vararg val x:) {}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
FILE: uncompletedTypRefInPrimaryConsturctorValWithVararg.kt
|
||||
public? final? class X : R|kotlin/Any| {
|
||||
public? constructor(vararg x: <ERROR TYPE REF: Incomplete code>): R|X| {
|
||||
LAZY_super<R|kotlin/Any|>
|
||||
}
|
||||
|
||||
public? final? val x: <ERROR TYPE REF: Incomplete code> = R|<local>/x|
|
||||
public? get(): <ERROR TYPE REF: Incomplete code>
|
||||
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
FILE: uncompletedTypRefInPrimaryConsturctorValWithVararg.kt
|
||||
public? final? class X : R|kotlin/Any| {
|
||||
public? [ContainingClassKey=X] constructor([CorrespondingProperty=/X.x] vararg x: <ERROR TYPE REF: Incomplete code>): R|X| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
public? final? [IsFromPrimaryConstructor=true, IsFromVarargKey=true] val x: <ERROR TYPE REF: Incomplete code> = R|<local>/x|
|
||||
public? [ContainingClassKey=X] get(): <ERROR TYPE REF: Incomplete code>
|
||||
|
||||
}
|
||||
+20
@@ -352,11 +352,21 @@ public class RawFirBuilderLazyBodiesTestCaseGenerated extends AbstractRawFirBuil
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructor.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorVal.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorVal() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorVal.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInSecondaryConstructor.kt")
|
||||
public void testNoParameterTypRefInSecondaryConstructor() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInSecondaryConstructor.kt");
|
||||
@@ -366,6 +376,16 @@ public class RawFirBuilderLazyBodiesTestCaseGenerated extends AbstractRawFirBuil
|
||||
public void testNoParameterTypRefInSetter() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInSetter.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+20
@@ -352,11 +352,21 @@ public class RawFirBuilderTestCaseGenerated extends AbstractRawFirBuilderTestCas
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructor.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorVal.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorVal() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorVal.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("noParameterTypRefInSecondaryConstructor.kt")
|
||||
public void testNoParameterTypRefInSecondaryConstructor() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInSecondaryConstructor.kt");
|
||||
@@ -366,6 +376,16 @@ public class RawFirBuilderTestCaseGenerated extends AbstractRawFirBuilderTestCas
|
||||
public void testNoParameterTypRefInSetter() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInSetter.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+24
@@ -378,12 +378,24 @@ public class FirVisualizerForRawFirDataGenerated extends AbstractFirVisualizerTe
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructor.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorVal.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorVal() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorVal.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInSecondaryConstructor.kt")
|
||||
public void testNoParameterTypRefInSecondaryConstructor() throws Exception {
|
||||
@@ -395,6 +407,18 @@ public class FirVisualizerForRawFirDataGenerated extends AbstractFirVisualizerTe
|
||||
public void testNoParameterTypRefInSetter() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInSetter.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+24
@@ -378,12 +378,24 @@ public class PsiVisualizerForRawFirDataGenerated extends AbstractPsiVisualizerTe
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructor.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorVal.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorVal() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorVal.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testNoParameterTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("noParameterTypRefInSecondaryConstructor.kt")
|
||||
public void testNoParameterTypRefInSecondaryConstructor() throws Exception {
|
||||
@@ -395,6 +407,18 @@ public class PsiVisualizerForRawFirDataGenerated extends AbstractPsiVisualizerTe
|
||||
public void testNoParameterTypRefInSetter() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/noParameterTypRefInSetter.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConstructorWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConstructorWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConstructorWithVararg.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("uncompletedTypRefInPrimaryConsturctorValWithVararg.kt")
|
||||
public void testUncompletedTypRefInPrimaryConsturctorValWithVararg() throws Exception {
|
||||
runTest("compiler/fir/raw-fir/psi2fir/testData/rawBuilder/declarations/noParameterType/uncompletedTypRefInPrimaryConsturctorValWithVararg.kt");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user