backend/tests: Added autogenerated tasks for external tests
This commit is contained in:
Vendored
+46
@@ -0,0 +1,46 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_annotations_annotationRetentionAnnotation (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/annotationRetentionAnnotation.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_annotations_annotationsOnJavaMembers (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/annotationsOnJavaMembers.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_annotations_findAnnotation (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/findAnnotation.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_annotations_propertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/propertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_annotations_propertyWithoutBackingField (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/propertyWithoutBackingField.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_annotations_retentions (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/retentions.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_annotations_simpleClassAnnotation (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/simpleClassAnnotation.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_annotations_simpleConstructorAnnotation (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/simpleConstructorAnnotation.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_annotations_simpleFunAnnotation (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/simpleFunAnnotation.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_annotations_simpleParamAnnotation (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/simpleParamAnnotation.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_annotations_simpleValAnnotation (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/annotations/simpleValAnnotation.kt"
|
||||
}
|
||||
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
Vendored
+54
@@ -0,0 +1,54 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_companionObjectPropertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/companionObjectPropertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_extensionFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/extensionFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_extensionPropertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/extensionPropertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_innerClassConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/innerClassConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_javaInstanceField (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/javaInstanceField.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_javaInstanceMethod (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/javaInstanceMethod.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_jvmStaticCompanionObjectPropertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/jvmStaticCompanionObjectPropertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_jvmStaticObjectFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/jvmStaticObjectFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_jvmStaticObjectPropertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/jvmStaticObjectPropertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_memberFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/memberFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_memberPropertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/memberPropertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_objectFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/objectFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_bound_objectPropertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/bound/objectPropertyAccessors.kt"
|
||||
}
|
||||
|
||||
+90
@@ -0,0 +1,90 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_call_callInstanceJavaMethod (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/callInstanceJavaMethod.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_callPrivateJavaMethod (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/callPrivateJavaMethod.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_callStaticJavaMethod (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/callStaticJavaMethod.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_cannotCallEnumConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/cannotCallEnumConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_disallowNullValueForNotNullField (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/disallowNullValueForNotNullField.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_equalsHashCodeToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/equalsHashCodeToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_exceptionHappened (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/exceptionHappened.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_fakeOverride (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/fakeOverride.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_fakeOverrideSubstituted (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/fakeOverrideSubstituted.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_incorrectNumberOfArguments (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/incorrectNumberOfArguments.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_innerClassConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/innerClassConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_jvmStatic (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/jvmStatic.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_jvmStaticInObjectIncorrectReceiver (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/jvmStaticInObjectIncorrectReceiver.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_localClassMember (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/localClassMember.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_memberOfGenericClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/memberOfGenericClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_privateProperty (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/privateProperty.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_propertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/propertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_propertyGetterAndGetFunctionDifferentReturnType (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/propertyGetterAndGetFunctionDifferentReturnType.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_returnUnit (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/returnUnit.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_simpleConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/simpleConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_simpleMemberFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/simpleMemberFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_call_simpleTopLevelFunctions (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/call/simpleTopLevelFunctions.kt"
|
||||
}
|
||||
|
||||
+74
@@ -0,0 +1,74 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_callBy_boundExtensionFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/boundExtensionFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_boundExtensionPropertyAcessor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/boundExtensionPropertyAcessor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_boundJvmStaticInObject (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/boundJvmStaticInObject.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_companionObject (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/companionObject.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_defaultAndNonDefaultIntertwined (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/defaultAndNonDefaultIntertwined.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_extensionFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/extensionFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_jvmStaticInCompanionObject (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/jvmStaticInCompanionObject.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_jvmStaticInObject (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/jvmStaticInObject.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_manyArgumentsOnlyOneDefault (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/manyArgumentsOnlyOneDefault.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_manyMaskArguments (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/manyMaskArguments.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_nonDefaultParameterOmitted (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/nonDefaultParameterOmitted.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_nullValue (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/nullValue.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_ordinaryMethodIsInvokedWhenNoDefaultValuesAreUsed (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/ordinaryMethodIsInvokedWhenNoDefaultValuesAreUsed.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_primitiveDefaultValues (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/primitiveDefaultValues.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_privateMemberFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/privateMemberFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_simpleConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/simpleConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_simpleMemberFunciton (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/simpleMemberFunciton.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_callBy_simpleTopLevelFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/callBy/simpleTopLevelFunction.kt"
|
||||
}
|
||||
|
||||
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_classLiterals_annotationClassLiteral (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classLiterals/annotationClassLiteral.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classLiterals_arrays (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classLiterals/arrays.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classLiterals_builtinClassLiterals (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classLiterals/builtinClassLiterals.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classLiterals_genericArrays (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classLiterals/genericArrays.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classLiterals_genericClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classLiterals/genericClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classLiterals_reifiedTypeClassLiteral (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classLiterals/reifiedTypeClassLiteral.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classLiterals_simpleClassLiteral (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classLiterals/simpleClassLiteral.kt"
|
||||
}
|
||||
|
||||
+50
@@ -0,0 +1,50 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_classes_classSimpleName (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/classSimpleName.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_companionObject (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/companionObject.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_createInstance (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/createInstance.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_declaredMembers (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/declaredMembers.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_jvmName (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/jvmName.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_localClassSimpleName (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/localClassSimpleName.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_nestedClasses (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/nestedClasses.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_nestedClassesJava (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/nestedClassesJava.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_objectInstance (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/objectInstance.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_primitiveKClassEquality (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/primitiveKClassEquality.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_qualifiedName (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/qualifiedName.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_classes_starProjectedType (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/classes/starProjectedType.kt"
|
||||
}
|
||||
|
||||
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_constructors_annotationClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/constructors/annotationClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_constructors_classesWithoutConstructors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/constructors/classesWithoutConstructors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_constructors_constructorName (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/constructors/constructorName.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_constructors_primaryConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/constructors/primaryConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_constructors_simpleGetConstructors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/constructors/simpleGetConstructors.kt"
|
||||
}
|
||||
|
||||
Vendored
+50
@@ -0,0 +1,50 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_annotationType (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/annotationType.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_arrayOfKClasses (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/arrayOfKClasses.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_callByJava (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/callByJava.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_callByKotlin (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/callByKotlin.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_callJava (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/callJava.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_callKotlin (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/callKotlin.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_createJdkAnnotationInstance (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/createJdkAnnotationInstance.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_enumKClassAnnotation (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/enumKClassAnnotation.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_equalsHashCodeToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/equalsHashCodeToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_floatingPointParameters (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/floatingPointParameters.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_parameterNamedEquals (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/parameterNamedEquals.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_createAnnotation_primitivesAndArrays (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/createAnnotation/primitivesAndArrays.kt"
|
||||
}
|
||||
|
||||
+98
@@ -0,0 +1,98 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_anonymousObjectInInlinedLambda (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/anonymousObjectInInlinedLambda.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_classInLambda (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/classInLambda.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_functionExpressionInProperty (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/functionExpressionInProperty.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_kt11969 (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/kt11969.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_kt6368 (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/kt6368.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_kt6691_lambdaInSamConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/kt6691_lambdaInSamConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInClassObject (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInClassObject.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInLambda (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInLambda.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInLocalClassConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInLocalClassConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInLocalClassSuperCall (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInLocalClassSuperCall.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInLocalFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInLocalFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInMemberFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInMemberFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInMemberFunctionInLocalClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInMemberFunctionInLocalClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInMemberFunctionInNestedClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInMemberFunctionInNestedClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInObjectDeclaration (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInObjectDeclaration.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInObjectExpression (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInObjectExpression.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInObjectLiteralSuperCall (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInObjectLiteralSuperCall.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInPackage (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInPackage.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInPropertyGetter (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInPropertyGetter.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_lambdaInPropertySetter (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/lambdaInPropertySetter.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_localClassInTopLevelFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/localClassInTopLevelFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_enclosing_objectInLambda (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/enclosing/objectInLambda.kt"
|
||||
}
|
||||
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_functions_declaredVsInheritedFunctions (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/declaredVsInheritedFunctions.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_functions_functionFromStdlib (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/functionFromStdlib.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_functions_functionReferenceErasedToKFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/functionReferenceErasedToKFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_functions_genericOverriddenFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/genericOverriddenFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_functions_instanceOfFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/instanceOfFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_functions_javaClassGetFunctions (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/javaClassGetFunctions.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_functions_javaMethodsSmokeTest (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/javaMethodsSmokeTest.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_functions_platformName (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/platformName.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_functions_privateMemberFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/privateMemberFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_functions_simpleGetFunctions (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/simpleGetFunctions.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_functions_simpleNames (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/functions/simpleNames.kt"
|
||||
}
|
||||
|
||||
Vendored
+34
@@ -0,0 +1,34 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_genericSignature_covariantOverride (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/genericSignature/covariantOverride.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_genericSignature_defaultImplsGenericSignature (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/genericSignature/defaultImplsGenericSignature.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_genericSignature_functionLiteralGenericSignature (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/genericSignature/functionLiteralGenericSignature.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_genericSignature_genericBackingFieldSignature (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/genericSignature/genericBackingFieldSignature.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_genericSignature_genericMethodSignature (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/genericSignature/genericMethodSignature.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_genericSignature_kt11121 (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/genericSignature/kt11121.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_genericSignature_kt5112 (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/genericSignature/kt5112.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_genericSignature_kt6106 (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/genericSignature/kt6106.kt"
|
||||
}
|
||||
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_isInstance_isInstanceCastAndSafeCast (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/isInstance/isInstanceCastAndSafeCast.kt"
|
||||
}
|
||||
|
||||
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_kClassInAnnotation_array (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/kClassInAnnotation/array.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_kClassInAnnotation_arrayInJava (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/kClassInAnnotation/arrayInJava.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_kClassInAnnotation_basic (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/kClassInAnnotation/basic.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_kClassInAnnotation_basicInJava (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/kClassInAnnotation/basicInJava.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_kClassInAnnotation_checkcast (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/kClassInAnnotation/checkcast.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_kClassInAnnotation_vararg (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/kClassInAnnotation/vararg.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_kClassInAnnotation_varargInJava (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/kClassInAnnotation/varargInJava.kt"
|
||||
}
|
||||
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_lambdaClasses_parameterNamesAndNullability (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/lambdaClasses/parameterNamesAndNullability.kt"
|
||||
}
|
||||
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_mapping_constructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/constructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_extensionProperty (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/extensionProperty.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_functions (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/functions.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_inlineReifiedFun (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/inlineReifiedFun.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_mappedClassIsEqualToClassLiteral (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/mappedClassIsEqualToClassLiteral.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_memberProperty (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/memberProperty.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_propertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/propertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_propertyAccessorsWithJvmName (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/propertyAccessorsWithJvmName.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_syntheticFields (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/syntheticFields.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_topLevelFunctionOtherFile (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/topLevelFunctionOtherFile.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_topLevelProperty (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/topLevelProperty.kt"
|
||||
}
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_mapping_fakeOverrides_javaFieldGetterSetter (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/fakeOverrides/javaFieldGetterSetter.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_fakeOverrides_javaMethod (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/fakeOverrides/javaMethod.kt"
|
||||
}
|
||||
|
||||
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_mapping_jvmStatic_companionObjectFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/jvmStatic/companionObjectFunction.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_jvmStatic_objectFunction (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/jvmStatic/objectFunction.kt"
|
||||
}
|
||||
|
||||
Vendored
+66
@@ -0,0 +1,66 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_annotationConstructorParameters (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/annotationConstructorParameters.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_array (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/array.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_constructors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/constructors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_genericArrayElementType (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/genericArrayElementType.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_innerGenericTypeArgument (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/innerGenericTypeArgument.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_memberFunctions (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/memberFunctions.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_overrideAnyWithPrimitive (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/overrideAnyWithPrimitive.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_parameterizedTypeArgument (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/parameterizedTypeArgument.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_parameterizedTypes (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/parameterizedTypes.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_propertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/propertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_rawTypeArgument (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/rawTypeArgument.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_supertypes (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/supertypes.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_topLevelFunctions (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/topLevelFunctions.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_typeParameters (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/typeParameters.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_unit (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/unit.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_mapping_types_withNullability (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/mapping/types/withNullability.kt"
|
||||
}
|
||||
|
||||
Vendored
+62
@@ -0,0 +1,62 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_callableReferencesEqualToCallablesFromAPI (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/callableReferencesEqualToCallablesFromAPI.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_classToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/classToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_extensionPropertyReceiverToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/extensionPropertyReceiverToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_functionEqualsHashCode (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/functionEqualsHashCode.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_functionToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/functionToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_memberExtensionToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/memberExtensionToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_parametersEqualsHashCode (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/parametersEqualsHashCode.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_parametersToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/parametersToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_propertyEqualsHashCode (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/propertyEqualsHashCode.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_propertyToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/propertyToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_typeEqualsHashCode (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/typeEqualsHashCode.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_typeParametersEqualsHashCode (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/typeParametersEqualsHashCode.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_typeParametersToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/typeParametersToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_typeToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/typeToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_methodsFromAny_typeToStringInnerGeneric (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/methodsFromAny/typeToStringInnerGeneric.kt"
|
||||
}
|
||||
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_modifiers_callableModality (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/modifiers/callableModality.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_modifiers_callableVisibility (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/modifiers/callableVisibility.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_modifiers_classes (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/modifiers/classes.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_modifiers_classModality (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/modifiers/classModality.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_modifiers_classVisibility (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/modifiers/classVisibility.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_modifiers_functions (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/modifiers/functions.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_modifiers_javaVisibility (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/modifiers/javaVisibility.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_modifiers_properties (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/modifiers/properties.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_modifiers_typeParameters (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/modifiers/typeParameters.kt"
|
||||
}
|
||||
|
||||
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_multifileClasses_callFunctionsInMultifileClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/multifileClasses/callFunctionsInMultifileClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_multifileClasses_callPropertiesInMultifileClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/multifileClasses/callPropertiesInMultifileClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_multifileClasses_javaFieldForVarAndConstVal (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/multifileClasses/javaFieldForVarAndConstVal.kt"
|
||||
}
|
||||
|
||||
Vendored
+26
@@ -0,0 +1,26 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_noReflectAtRuntime_javaClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/noReflectAtRuntime/javaClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_noReflectAtRuntime_primitiveJavaClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/noReflectAtRuntime/primitiveJavaClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_noReflectAtRuntime_propertyGetSetName (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/noReflectAtRuntime/propertyGetSetName.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_noReflectAtRuntime_propertyInstanceof (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/noReflectAtRuntime/propertyInstanceof.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_noReflectAtRuntime_reifiedTypeJavaClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/noReflectAtRuntime/reifiedTypeJavaClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_noReflectAtRuntime_simpleClassLiterals (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/noReflectAtRuntime/simpleClassLiterals.kt"
|
||||
}
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_noReflectAtRuntime_methodsFromAny_callableReferences (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_noReflectAtRuntime_methodsFromAny_classReference (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/noReflectAtRuntime/methodsFromAny/classReference.kt"
|
||||
}
|
||||
|
||||
Vendored
+50
@@ -0,0 +1,50 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_parameters_boundInnerClassConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/boundInnerClassConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_boundObjectMemberReferences (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/boundObjectMemberReferences.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_boundReferences (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/boundReferences.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_findParameterByName (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/findParameterByName.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_functionParameterNameAndIndex (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/functionParameterNameAndIndex.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_instanceExtensionReceiverAndValueParameters (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/instanceExtensionReceiverAndValueParameters.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_isMarkedNullable (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/isMarkedNullable.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_isOptional (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/isOptional.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_javaAnnotationConstructor (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/javaAnnotationConstructor.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_javaParametersHaveNoNames (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/javaParametersHaveNoNames.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_kinds (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/kinds.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_parameters_propertySetter (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/parameters/propertySetter.kt"
|
||||
}
|
||||
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_properties_accessors_accessorNames (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/accessors/accessorNames.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_accessors_extensionPropertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/accessors/extensionPropertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_accessors_memberExtensions (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/accessors/memberExtensions.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_accessors_memberPropertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/accessors/memberPropertyAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_accessors_topLevelPropertyAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/accessors/topLevelPropertyAccessors.kt"
|
||||
}
|
||||
|
||||
Vendored
+118
@@ -0,0 +1,118 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_properties_allVsDeclared (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/allVsDeclared.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_callPrivatePropertyFromGetProperties (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/callPrivatePropertyFromGetProperties.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_declaredVsInheritedProperties (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/declaredVsInheritedProperties.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_fakeOverridesInSubclass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/fakeOverridesInSubclass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_genericClassLiteralPropertyReceiverIsStar (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/genericClassLiteralPropertyReceiverIsStar.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_genericOverriddenProperty (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/genericOverriddenProperty.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_genericProperty (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/genericProperty.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_getExtensionPropertiesMutableVsReadonly (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/getExtensionPropertiesMutableVsReadonly.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_getPropertiesMutableVsReadonly (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/getPropertiesMutableVsReadonly.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_invokeKProperty (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/invokeKProperty.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_javaPropertyInheritedInKotlin (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/javaPropertyInheritedInKotlin.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_javaStaticField (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/javaStaticField.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_kotlinPropertyInheritedInJava (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/kotlinPropertyInheritedInJava.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_memberAndMemberExtensionWithSameName (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/memberAndMemberExtensionWithSameName.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_mutatePrivateJavaInstanceField (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/mutatePrivateJavaInstanceField.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_mutatePrivateJavaStaticField (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/mutatePrivateJavaStaticField.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_noConflictOnKotlinGetterAndJavaField (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/noConflictOnKotlinGetterAndJavaField.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_overrideKotlinPropertyByJavaMethod (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/overrideKotlinPropertyByJavaMethod.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_privateClassVal (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/privateClassVal.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_privateClassVar (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/privateClassVar.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_privateFakeOverrideFromSuperclass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/privateFakeOverrideFromSuperclass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_privateJvmStaticVarInObject (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/privateJvmStaticVarInObject.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_privatePropertyCallIsAccessibleOnAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/privatePropertyCallIsAccessibleOnAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_privateToThisAccessors (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/privateToThisAccessors.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_propertyOfNestedClassAndArrayType (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/propertyOfNestedClassAndArrayType.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_protectedClassVar (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/protectedClassVar.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_publicClassValAccessible (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/publicClassValAccessible.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_referenceToJavaFieldOfKotlinSubclass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/referenceToJavaFieldOfKotlinSubclass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_properties_simpleGetProperties (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/properties/simpleGetProperties.kt"
|
||||
}
|
||||
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_specialBuiltIns_getMembersOfStandardJavaClasses (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/specialBuiltIns/getMembersOfStandardJavaClasses.kt"
|
||||
}
|
||||
|
||||
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_supertypes_builtInClassSupertypes (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/supertypes/builtInClassSupertypes.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_supertypes_genericSubstitution (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/supertypes/genericSubstitution.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_supertypes_isSubclassOfIsSuperclassOf (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/supertypes/isSubclassOfIsSuperclassOf.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_supertypes_primitives (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/supertypes/primitives.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_supertypes_simpleSupertypes (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/supertypes/simpleSupertypes.kt"
|
||||
}
|
||||
|
||||
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_typeParameters_declarationSiteVariance (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/typeParameters/declarationSiteVariance.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_typeParameters_typeParametersAndNames (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/typeParameters/typeParametersAndNames.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_typeParameters_upperBounds (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/typeParameters/upperBounds.kt"
|
||||
}
|
||||
|
||||
+50
@@ -0,0 +1,50 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_types_classifierIsClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/classifierIsClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_classifierIsTypeParameter (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/classifierIsTypeParameter.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_classifiersOfBuiltInTypes (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/classifiersOfBuiltInTypes.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_innerGenericArguments (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/innerGenericArguments.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_jvmErasureOfClass (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/jvmErasureOfClass.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_jvmErasureOfTypeParameter (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/jvmErasureOfTypeParameter.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_platformTypeClassifier (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/platformTypeClassifier.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_platformTypeNotEqualToKotlinType (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/platformTypeNotEqualToKotlinType.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_platformTypeToString (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/platformTypeToString.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_typeArguments (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/typeArguments.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_useSiteVariance (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/useSiteVariance.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_withNullability (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/withNullability.kt"
|
||||
}
|
||||
|
||||
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_types_createType_equality (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/createType/equality.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_createType_innerGeneric (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/createType/innerGeneric.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_createType_simpleCreateType (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/createType/simpleCreateType.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_createType_typeParameter (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/createType/typeParameter.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_createType_wrongNumberOfArguments (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/createType/wrongNumberOfArguments.kt"
|
||||
}
|
||||
|
||||
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
import org.jetbrains.kotlin.*
|
||||
|
||||
task codegen_blackbox_reflection_types_subtyping_platformType (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/subtyping/platformType.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_subtyping_simpleGenericTypes (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/subtyping/simpleGenericTypes.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_subtyping_simpleSubtypeSupertype (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/subtyping/simpleSubtypeSupertype.kt"
|
||||
}
|
||||
|
||||
task codegen_blackbox_reflection_types_subtyping_typeProjection (type: RunExternalTest) {
|
||||
source = "codegen/blackbox/reflection/types/subtyping/typeProjection.kt"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user