Skip to content

Commit

Permalink
Fix Kotlin master compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr3zee committed Dec 4, 2024
1 parent 8f21cd8 commit 0e42a45
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import org.jetbrains.kotlin.ir.symbols.IrSimpleFunctionSymbol
import org.jetbrains.kotlin.ir.types.IrType
import org.jetbrains.kotlin.platform.TargetPlatform

@Suppress("detekt.LongParameterList")
interface VersionSpecificApi {
fun isJs(platform: TargetPlatform?): Boolean
fun isWasm(platform: TargetPlatform?): Boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,6 @@ internal class RpcStubGenerator(
type = fieldType,
callee = ctx.functions.lazyGetValue,
typeArgumentsCount = 1,
valueArgumentsCount = 2,
).apply {
putTypeArgument(0, fieldType)

Expand Down Expand Up @@ -747,7 +746,6 @@ internal class RpcStubGenerator(
callee = ctx.functions.rpcClientCall.symbol,
type = method.function.returnType,
typeArgumentsCount = 1,
valueArgumentsCount = 1,
).apply {
dispatchReceiver = irCallProperty(
clazz = stubClass,
Expand Down

0 comments on commit 0e42a45

Please sign in to comment.