Testing Kotlin 1.4.30-RC

This commit is contained in:
Brian Norman
2021-01-28 21:56:52 -06:00
parent 237aa15396
commit 871878bc2e
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
plugins {
kotlin("jvm") version "1.4.30-M1" apply false
kotlin("jvm") version "1.4.30-RC" apply false
id("org.jetbrains.dokka") version "0.10.0" apply false
id("com.gradle.plugin-publish") version "0.11.0" apply false
id("com.github.gmazzo.buildconfig") version "2.0.2" apply false
@@ -180,7 +180,7 @@ class PowerAssertCallTransformer(
}
parent = scope.parent
}
val expression = IrFunctionExpressionImpl(-1, -1, parameters[1].type, lambda, IrStatementOrigin.LAMBDA)
val expression = IrFunctionExpressionImpl(original.startOffset, original.endOffset, parameters[1].type, lambda, IrStatementOrigin.LAMBDA)
irCall(overload, type = overload.owner.returnType).apply {
dispatchReceiver = original.dispatchReceiver?.deepCopyWithSymbols(parent)
extensionReceiver = original.extensionReceiver?.deepCopyWithSymbols(parent)
+1 -1
View File
@@ -1,5 +1,5 @@
plugins {
kotlin("multiplatform") version "1.4.30-M1"
kotlin("multiplatform") version "1.4.30-RC"
id("com.bnorm.power.kotlin-power-assert") version "0.6.1"
}