[FIR] generate testdata for RawFirBuilderLazyBodiesTestCase for newly added tests
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
FILE: noParameterTypRefInCatch.kt
|
||||
public? final? fun foo(): R|kotlin/Unit| { LAZY_BLOCK }
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
FILE: noParameterTypRefInFuncionalType.kt
|
||||
public? final? fun x(p: ( (a) -> Int )): R|kotlin/Unit| { LAZY_BLOCK }
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
FILE: noParameterTypRefInFunction.kt
|
||||
public? final? fun foo(x: <ERROR TYPE REF: No type for parameter>): R|kotlin/Unit| { LAZY_BLOCK }
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
FILE: noParameterTypRefInLambda.kt
|
||||
public? final? fun foo(): R|kotlin/Unit| { LAZY_BLOCK }
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
FILE: noParameterTypRefInPrimaryConstructor.kt
|
||||
public? final? class X : R|kotlin/Any| {
|
||||
public? constructor(x: <ERROR TYPE REF: No type for parameter>): R|X| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
FILE: noParameterTypRefInPrimaryConsturctorVal.kt
|
||||
public? final? class X : R|kotlin/Any| {
|
||||
public? constructor(x: <ERROR TYPE REF: No type for parameter>): R|X| {
|
||||
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>
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
FILE: noParameterTypRefInSecondaryConstructor.kt
|
||||
public? final? class C : R|kotlin/Any| {
|
||||
public? constructor(x: <ERROR TYPE REF: No type for parameter>): R|C| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
FILE: noParameterTypRefInSetter.kt
|
||||
public? final? var x: Int
|
||||
public? get(): Int
|
||||
public? set(value: Int): R|kotlin/Unit| { LAZY_BLOCK }
|
||||
Reference in New Issue
Block a user