|
1 | 1 | /* |
2 | | - * Copyright 2023-2024 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license. |
| 2 | + * Copyright 2023-2025 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license. |
3 | 3 | */ |
4 | 4 |
|
5 | 5 | @file:Suppress("detekt.ClassNaming", "ClassName") |
@@ -36,12 +36,11 @@ class CompilerPluginCli : KotlinCompilerPluginSupportPlugin by compilerPlugin({ |
36 | 36 | SubpluginOption("strict-stateFlow", strict.stateFlow.get().toCompilerArg()), |
37 | 37 | SubpluginOption("strict-sharedFlow", strict.sharedFlow.get().toCompilerArg()), |
38 | 38 | SubpluginOption("strict-nested-flow", strict.nestedFlow.get().toCompilerArg()), |
39 | | - // WIP: https://youtrack.jetbrains.com/issue/KRPC-133 |
40 | | -// SubpluginOption("strict-stream-scope", strict.streamScopedFunctions.get().toCompilerArg()), |
41 | | -// SubpluginOption( |
42 | | -// "strict-suspending-server-streaming", |
43 | | -// strict.suspendingServerStreaming.get().toCompilerArg() |
44 | | -// ), |
| 39 | + SubpluginOption("strict-stream-scope", strict.streamScopedFunctions.get().toCompilerArg()), |
| 40 | + SubpluginOption( |
| 41 | + "strict-suspending-server-streaming", |
| 42 | + strict.suspendingServerStreaming.get().toCompilerArg() |
| 43 | + ), |
45 | 44 | SubpluginOption("strict-not-top-level-server-flow", strict.notTopLevelServerFlow.get().toCompilerArg()), |
46 | 45 | SubpluginOption("strict-fields", strict.fields.get().toCompilerArg()), |
47 | 46 | @OptIn(RpcDangerousApi::class) |
|
0 commit comments