83 lines
2.6 KiB
Groovy
83 lines
2.6 KiB
Groovy
import org.jetbrains.kotlin.*
|
|
|
|
task codegen_blackbox_casts_as (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/as.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_asForConstants (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/asForConstants.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_asSafe (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/asSafe.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_asSafeFail (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/asSafeFail.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_asSafeForConstants (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/asSafeForConstants.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_asUnit (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/asUnit.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_asWithGeneric (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/asWithGeneric.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_castGenericNull (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/castGenericNull.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_intersectionTypeMultipleBounds (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/intersectionTypeMultipleBounds.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_intersectionTypeMultipleBoundsImplicitReceiver (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/intersectionTypeMultipleBoundsImplicitReceiver.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_intersectionTypeSmartcast (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/intersectionTypeSmartcast.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_intersectionTypeWithMultipleBoundsAsReceiver (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/intersectionTypeWithMultipleBoundsAsReceiver.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_intersectionTypeWithoutGenericsAsReceiver (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/intersectionTypeWithoutGenericsAsReceiver.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_is (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/is.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_lambdaToUnitCast (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/lambdaToUnitCast.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_notIs (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/notIs.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_unitAsAny (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/unitAsAny.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_unitAsInt (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/unitAsInt.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_unitAsSafeAny (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/unitAsSafeAny.kt"
|
|
}
|
|
|
|
task codegen_blackbox_casts_unitNullableCast (type: RunExternalTest) {
|
|
source = "codegen/blackbox/casts/unitNullableCast.kt"
|
|
}
|
|
|