File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
compiler-plugin/compiler-plugin-backend/src/main/core/kotlinx/rpc/codegen Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import org.jetbrains.kotlin.ir.symbols.IrSimpleFunctionSymbol
22
22
import org.jetbrains.kotlin.ir.types.IrType
23
23
import org.jetbrains.kotlin.platform.TargetPlatform
24
24
25
+ @Suppress(" detekt.LongParameterList" )
25
26
interface VersionSpecificApi {
26
27
fun isJs (platform : TargetPlatform ? ): Boolean
27
28
fun isWasm (platform : TargetPlatform ? ): Boolean
Original file line number Diff line number Diff line change @@ -434,7 +434,6 @@ internal class RpcStubGenerator(
434
434
type = fieldType,
435
435
callee = ctx.functions.lazyGetValue,
436
436
typeArgumentsCount = 1 ,
437
- valueArgumentsCount = 2 ,
438
437
).apply {
439
438
putTypeArgument(0 , fieldType)
440
439
@@ -747,7 +746,6 @@ internal class RpcStubGenerator(
747
746
callee = ctx.functions.rpcClientCall.symbol,
748
747
type = method.function.returnType,
749
748
typeArgumentsCount = 1 ,
750
- valueArgumentsCount = 1 ,
751
749
).apply {
752
750
dispatchReceiver = irCallProperty(
753
751
clazz = stubClass,
You can’t perform that action at this time.
0 commit comments