@continuous-excellence/coupling-cli 1.1.430 → 1.1.431
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +36 -36
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +15 -15
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.js.mjs +33 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.js.mjs.map +1 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +91 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +28 -26
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +28 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +35 -35
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +4 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +50 -50
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +12 -12
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +18 -18
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs +78 -78
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +50 -50
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +30 -30
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs.map +1 -1
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +4 -4
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +10 -10
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +47 -47
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +57 -57
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +34 -34
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +17 -17
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +26 -26
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +19 -19
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSyntax.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +32 -32
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +77 -77
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +102 -102
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +29 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +36 -36
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +24 -24
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +47 -47
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +8 -8
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs +107 -107
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +54 -54
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +61 -61
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +3 -3
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +43 -43
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/DeferredFragmentIdentifier.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executable.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs +21 -21
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +139 -139
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +57 -57
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +28 -28
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +83 -83
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +273 -273
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonNumber.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +11 -11
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonWriters.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +111 -111
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +48 -48
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/FileUploadAwareJsonWriter.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/JsonScope.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +51 -51
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +216 -216
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +40 -40
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/DeferredJsonMerger.mjs +26 -26
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +49 -49
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/dispatchers.js.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpEngine.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +145 -145
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/Js.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/Js.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +33 -33
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +29 -29
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +181 -181
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +23 -23
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.js.mjs +1 -1
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +42 -42
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +68 -68
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +33 -33
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +101 -101
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +93 -93
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +134 -134
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +12 -12
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +189 -189
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +227 -227
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +64 -64
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +24 -24
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +119 -119
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +132 -132
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
- package/kotlin/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +19 -19
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +9 -9
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Result.mjs +5 -5
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +14 -14
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByte.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UInt.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULong.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShort.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +2 -0
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +80 -56
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/TimeSource.mjs +11 -11
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/measureTime.mjs +7 -7
- package/kotlin/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +24 -24
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +10 -10
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +22 -22
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +5 -5
- package/kotlin/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +8 -8
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +25 -25
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Await.mjs +40 -40
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Await.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +30 -30
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +7 -7
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +163 -163
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +10 -10
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +11 -11
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +42 -42
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +27 -27
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +6 -6
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +92 -92
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +313 -313
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +461 -461
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +30 -30
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +25 -25
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +16 -16
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +13 -13
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +20 -20
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collection.mjs +10 -10
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +14 -14
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs +28 -28
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Limit.mjs +16 -16
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +9 -9
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +19 -19
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +134 -134
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs +19 -19
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +32 -32
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +72 -72
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +8 -8
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +46 -46
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +71 -71
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs +39 -39
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +23 -23
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs +72 -72
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs +12 -12
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +11 -11
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +9 -9
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +15 -15
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +34 -34
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +2 -2
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +11 -11
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +157 -157
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +10 -10
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +20 -20
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +50 -50
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +132 -132
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +6 -6
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +2 -2
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +12 -12
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +58 -58
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +12 -12
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +17 -17
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +3 -3
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +32 -32
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +89 -89
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +46 -46
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +50 -50
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +38 -38
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +56 -56
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +229 -229
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +22 -22
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +33 -33
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +14 -14
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +41 -41
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +5 -5
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +70 -70
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +444 -444
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +114 -114
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +194 -194
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +90 -90
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +30 -30
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +47 -47
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +58 -58
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementBuilders.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +146 -146
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +178 -178
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +68 -68
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +15 -15
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +20 -20
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +39 -39
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +12 -12
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +62 -62
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +175 -175
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +142 -142
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +212 -212
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +178 -178
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +9 -9
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +69 -69
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +75 -75
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +35 -35
- package/kotlin/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +45 -45
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +48 -48
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +46 -46
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +24 -24
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +49 -49
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +22 -22
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +32 -32
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +9 -9
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +36 -36
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs +56 -56
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +32 -32
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +67 -67
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +78 -78
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +48 -48
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +33 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +28 -28
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +108 -108
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +52 -52
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +79 -79
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +23 -23
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +26 -26
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +34 -34
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserver.mjs +56 -56
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +36 -36
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +61 -61
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSocketContent.mjs +8 -8
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +77 -77
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +7 -7
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +14 -14
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +57 -57
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +18 -18
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/buildersWithUrl.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/FormDataContent.mjs +9 -9
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/formBuilders.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +19 -19
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +5 -5
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/HttpClientCallLogger.mjs +28 -28
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogLevel.mjs +3 -3
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggedContent.mjs +15 -15
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logger.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs +275 -275
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +14 -14
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/ObservingUtils.mjs +13 -13
- package/kotlin/ktor-ktor-events/io/ktor/events/Events.mjs +6 -6
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +12 -12
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +90 -90
- package/kotlin/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +18 -18
- package/kotlin/ktor-ktor-http/io/ktor/http/Headers.mjs +18 -18
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +32 -32
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +115 -115
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +5 -5
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +13 -13
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +16 -16
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +66 -66
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpUrlEncoded.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs +12 -12
- package/kotlin/ktor-ktor-http/io/ktor/http/Query.mjs +4 -4
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +59 -59
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs +34 -34
- package/kotlin/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +20 -20
- package/kotlin/ktor-ktor-http/io/ktor/http/URLUtils.mjs +25 -25
- package/kotlin/ktor-ktor-http/io/ktor/http/Url.mjs +77 -77
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +31 -31
- package/kotlin/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +11 -11
- package/kotlin/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +9 -9
- package/kotlin/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +14 -14
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +5 -5
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +87 -87
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +33 -33
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +49 -49
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +10 -10
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +68 -68
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +2 -2
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +4 -4
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +3 -3
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +126 -126
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +53 -53
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +13 -13
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +71 -71
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +34 -34
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +11 -11
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +23 -23
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +12 -12
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +15 -15
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +18 -18
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +36 -36
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +4 -4
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +5 -5
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +4 -4
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +10 -10
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +28 -28
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +3 -3
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +5 -5
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +36 -36
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +79 -79
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +8 -8
- package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.mjs +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/ByteChannels.mjs +55 -55
- package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +31 -31
- package/kotlin/ktor-ktor-utils/io/ktor/util/ContentEncodersJs.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +34 -34
- package/kotlin/ktor-ktor-utils/io/ktor/util/Encoders.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/StringValues.mjs +88 -88
- package/kotlin/ktor-ktor-utils/io/ktor/util/Text.mjs +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/Date.mjs +102 -102
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +8 -8
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +10 -10
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +29 -29
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +25 -25
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +53 -53
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +2 -2
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +50 -50
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +9 -9
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +19 -19
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs +119 -119
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +41 -41
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +6 -6
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +42 -42
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketExtension.mjs +4 -4
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketExtensionHeader.mjs +4 -4
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs +6 -6
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +63 -63
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +65 -65
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +225 -225
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +23 -23
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +139 -139
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +16 -16
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +58 -58
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +408 -408
- package/kotlin/okio-parent-okio/okio/ByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +15 -15
- package/kotlin/okio-parent-okio/okio/Okio.mjs +2 -2
- package/kotlin/okio-parent-okio/okio/Options.mjs +23 -23
- package/kotlin/okio-parent-okio/okio/RealBufferedSink.mjs +37 -37
- package/kotlin/okio-parent-okio/okio/RealBufferedSource.mjs +70 -70
- package/kotlin/okio-parent-okio/okio/Segment.mjs +70 -70
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +5 -5
- package/kotlin/okio-parent-okio/okio/SegmentedByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/Util.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/-Utf8.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Buffer.mjs +24 -24
- package/kotlin/okio-parent-okio/okio/internal/ByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/SegmentedByteString.mjs +1 -1
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +7 -7
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +144 -144
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +32 -32
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +30 -30
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +34 -34
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Errors.mjs +1 -1
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +12 -12
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +1 -1
|
@@ -108,25 +108,25 @@ var JobNodeClass;
|
|
|
108
108
|
function JobNode() {
|
|
109
109
|
if (JobNodeClass === VOID) {
|
|
110
110
|
class $ extends LockFreeLinkedListNode() {
|
|
111
|
-
|
|
112
|
-
var tmp = this.
|
|
111
|
+
nz() {
|
|
112
|
+
var tmp = this.mz_1;
|
|
113
113
|
if (!(tmp == null))
|
|
114
114
|
return tmp;
|
|
115
115
|
else {
|
|
116
116
|
throwUninitializedPropertyAccessException('job');
|
|
117
117
|
}
|
|
118
118
|
}
|
|
119
|
-
|
|
119
|
+
mw() {
|
|
120
120
|
return true;
|
|
121
121
|
}
|
|
122
|
-
|
|
122
|
+
oz() {
|
|
123
123
|
return null;
|
|
124
124
|
}
|
|
125
|
-
|
|
126
|
-
return this.
|
|
125
|
+
bz() {
|
|
126
|
+
return this.nz().tx(this);
|
|
127
127
|
}
|
|
128
128
|
toString() {
|
|
129
|
-
return get_classSimpleName(this) + '@' + get_hexAddress(this) + '[job@' + get_hexAddress(this.
|
|
129
|
+
return get_classSimpleName(this) + '@' + get_hexAddress(this) + '[job@' + get_hexAddress(this.nz()) + ']';
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
initMetadataForClass($, 'JobNode', VOID, VOID, [LockFreeLinkedListNode(), Incomplete()]);
|
|
@@ -137,14 +137,14 @@ function JobNode() {
|
|
|
137
137
|
function unboxState(_this__u8e3s4) {
|
|
138
138
|
_init_properties_JobSupport_kt__68f172();
|
|
139
139
|
var tmp0_safe_receiver = _this__u8e3s4 instanceof IncompleteStateBox() ? _this__u8e3s4 : null;
|
|
140
|
-
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
140
|
+
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.i15_1;
|
|
141
141
|
return tmp1_elvis_lhs == null ? _this__u8e3s4 : tmp1_elvis_lhs;
|
|
142
142
|
}
|
|
143
143
|
function _set_exceptionsHolder__tqm22h($this, value) {
|
|
144
|
-
$this.
|
|
144
|
+
$this.m15_1.kotlinx$atomicfu$value = value;
|
|
145
145
|
}
|
|
146
146
|
function _get_exceptionsHolder__nhszp($this) {
|
|
147
|
-
return $this.
|
|
147
|
+
return $this.m15_1.kotlinx$atomicfu$value;
|
|
148
148
|
}
|
|
149
149
|
function allocateList($this) {
|
|
150
150
|
return ArrayList().w2(4);
|
|
@@ -154,12 +154,12 @@ function finalizeFinishingState($this, state, proposedUpdate) {
|
|
|
154
154
|
// Inline function 'kotlinx.coroutines.assert' call
|
|
155
155
|
// Inline function 'kotlinx.coroutines.assert' call
|
|
156
156
|
var tmp0_safe_receiver = proposedUpdate instanceof CompletedExceptionally() ? proposedUpdate : null;
|
|
157
|
-
var proposedException = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
157
|
+
var proposedException = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.rw_1;
|
|
158
158
|
var wasCancelling;
|
|
159
159
|
// Inline function 'kotlinx.coroutines.internal.synchronized' call
|
|
160
160
|
// Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
|
|
161
|
-
wasCancelling = state.
|
|
162
|
-
var exceptions = state.
|
|
161
|
+
wasCancelling = state.n15();
|
|
162
|
+
var exceptions = state.o15(proposedException);
|
|
163
163
|
var finalCause = getFinalRootCause($this, state, exceptions);
|
|
164
164
|
if (!(finalCause == null)) {
|
|
165
165
|
addSuppressedExceptions($this, finalCause, exceptions);
|
|
@@ -167,25 +167,25 @@ function finalizeFinishingState($this, state, proposedUpdate) {
|
|
|
167
167
|
var finalException = finalCause;
|
|
168
168
|
var finalState = finalException == null ? proposedUpdate : finalException === proposedException ? proposedUpdate : new (CompletedExceptionally())(finalException);
|
|
169
169
|
if (!(finalException == null)) {
|
|
170
|
-
var handled = cancelParent($this, finalException) || $this.
|
|
170
|
+
var handled = cancelParent($this, finalException) || $this.iy(finalException);
|
|
171
171
|
if (handled) {
|
|
172
|
-
(finalState instanceof CompletedExceptionally() ? finalState : THROW_CCE()).
|
|
172
|
+
(finalState instanceof CompletedExceptionally() ? finalState : THROW_CCE()).k12();
|
|
173
173
|
}
|
|
174
174
|
}
|
|
175
175
|
if (!wasCancelling) {
|
|
176
|
-
$this.
|
|
176
|
+
$this.fy(finalException);
|
|
177
177
|
}
|
|
178
|
-
$this.
|
|
179
|
-
var casSuccess = $this.
|
|
178
|
+
$this.qw(finalState);
|
|
179
|
+
var casSuccess = $this.fw_1.atomicfu$compareAndSet(state, boxIncomplete(finalState));
|
|
180
180
|
// Inline function 'kotlinx.coroutines.assert' call
|
|
181
181
|
completeStateFinalization($this, state, finalState);
|
|
182
182
|
return finalState;
|
|
183
183
|
}
|
|
184
184
|
function getFinalRootCause($this, state, exceptions) {
|
|
185
185
|
if (exceptions.o1()) {
|
|
186
|
-
if (state.
|
|
186
|
+
if (state.n15()) {
|
|
187
187
|
// Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
|
|
188
|
-
return JobCancellationException().
|
|
188
|
+
return JobCancellationException().v15(null == null ? $this.pw() : null, null, $this);
|
|
189
189
|
}
|
|
190
190
|
return null;
|
|
191
191
|
}
|
|
@@ -261,37 +261,37 @@ function addSuppressedExceptions($this, rootCause, exceptions) {
|
|
|
261
261
|
function tryFinalizeSimpleState($this, state, update) {
|
|
262
262
|
// Inline function 'kotlinx.coroutines.assert' call
|
|
263
263
|
// Inline function 'kotlinx.coroutines.assert' call
|
|
264
|
-
if (!$this.
|
|
264
|
+
if (!$this.fw_1.atomicfu$compareAndSet(state, boxIncomplete(update)))
|
|
265
265
|
return false;
|
|
266
|
-
$this.
|
|
267
|
-
$this.
|
|
266
|
+
$this.fy(null);
|
|
267
|
+
$this.qw(update);
|
|
268
268
|
completeStateFinalization($this, state, update);
|
|
269
269
|
return true;
|
|
270
270
|
}
|
|
271
271
|
function completeStateFinalization($this, state, update) {
|
|
272
|
-
var tmp0_safe_receiver = $this.
|
|
272
|
+
var tmp0_safe_receiver = $this.ex();
|
|
273
273
|
if (tmp0_safe_receiver == null)
|
|
274
274
|
null;
|
|
275
275
|
else {
|
|
276
276
|
// Inline function 'kotlin.let' call
|
|
277
|
-
tmp0_safe_receiver.
|
|
278
|
-
$this.
|
|
277
|
+
tmp0_safe_receiver.bz();
|
|
278
|
+
$this.dx(NonDisposableHandle_instance);
|
|
279
279
|
}
|
|
280
280
|
var tmp1_safe_receiver = update instanceof CompletedExceptionally() ? update : null;
|
|
281
|
-
var cause = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.
|
|
281
|
+
var cause = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.rw_1;
|
|
282
282
|
if (state instanceof JobNode()) {
|
|
283
283
|
try {
|
|
284
|
-
state.
|
|
284
|
+
state.cz(cause);
|
|
285
285
|
} catch ($p) {
|
|
286
286
|
if ($p instanceof Error) {
|
|
287
287
|
var ex = $p;
|
|
288
|
-
$this.
|
|
288
|
+
$this.xw(CompletionHandlerException().b12('Exception in completion handler ' + state.toString() + ' for ' + $this.toString(), ex));
|
|
289
289
|
} else {
|
|
290
290
|
throw $p;
|
|
291
291
|
}
|
|
292
292
|
}
|
|
293
293
|
} else {
|
|
294
|
-
var tmp2_safe_receiver = state.
|
|
294
|
+
var tmp2_safe_receiver = state.oz();
|
|
295
295
|
if (tmp2_safe_receiver == null)
|
|
296
296
|
null;
|
|
297
297
|
else {
|
|
@@ -300,23 +300,23 @@ function completeStateFinalization($this, state, update) {
|
|
|
300
300
|
}
|
|
301
301
|
}
|
|
302
302
|
function notifyCancelling($this, list, cause) {
|
|
303
|
-
$this.
|
|
304
|
-
list.
|
|
303
|
+
$this.fy(cause);
|
|
304
|
+
list.w15(4);
|
|
305
305
|
// Inline function 'kotlinx.coroutines.JobSupport.notifyHandlers' call
|
|
306
306
|
var exception = null;
|
|
307
307
|
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
|
|
308
|
-
var cur = list.
|
|
308
|
+
var cur = list.pz_1;
|
|
309
309
|
while (!equals(cur, list)) {
|
|
310
310
|
var node = cur;
|
|
311
311
|
var tmp;
|
|
312
312
|
if (node instanceof JobNode()) {
|
|
313
|
-
tmp = node.
|
|
313
|
+
tmp = node.fz();
|
|
314
314
|
} else {
|
|
315
315
|
tmp = false;
|
|
316
316
|
}
|
|
317
317
|
if (tmp) {
|
|
318
318
|
try {
|
|
319
|
-
node.
|
|
319
|
+
node.cz(cause);
|
|
320
320
|
} catch ($p) {
|
|
321
321
|
if ($p instanceof Error) {
|
|
322
322
|
var ex = $p;
|
|
@@ -331,40 +331,40 @@ function notifyCancelling($this, list, cause) {
|
|
|
331
331
|
}
|
|
332
332
|
if (tmp_0 == null) {
|
|
333
333
|
// Inline function 'kotlin.run' call
|
|
334
|
-
exception = CompletionHandlerException().
|
|
334
|
+
exception = CompletionHandlerException().b12('Exception in completion handler ' + node.toString() + ' for ' + $this.toString(), ex);
|
|
335
335
|
}
|
|
336
336
|
} else {
|
|
337
337
|
throw $p;
|
|
338
338
|
}
|
|
339
339
|
}
|
|
340
340
|
}
|
|
341
|
-
cur = cur.
|
|
341
|
+
cur = cur.pz_1;
|
|
342
342
|
}
|
|
343
343
|
var tmp0_safe_receiver_0 = exception;
|
|
344
344
|
if (tmp0_safe_receiver_0 == null)
|
|
345
345
|
null;
|
|
346
346
|
else {
|
|
347
347
|
// Inline function 'kotlin.let' call
|
|
348
|
-
$this.
|
|
348
|
+
$this.xw(tmp0_safe_receiver_0);
|
|
349
349
|
}
|
|
350
350
|
cancelParent($this, cause);
|
|
351
351
|
}
|
|
352
352
|
function cancelParent($this, cause) {
|
|
353
|
-
if ($this.
|
|
353
|
+
if ($this.gy())
|
|
354
354
|
return true;
|
|
355
355
|
var isCancellation = cause instanceof CancellationException();
|
|
356
|
-
var parent = $this.
|
|
356
|
+
var parent = $this.ex();
|
|
357
357
|
if (parent === null || parent === NonDisposableHandle_instance) {
|
|
358
358
|
return isCancellation;
|
|
359
359
|
}
|
|
360
|
-
return parent.
|
|
360
|
+
return parent.zx(cause) || isCancellation;
|
|
361
361
|
}
|
|
362
362
|
function notifyCompletion($this, _this__u8e3s4, cause) {
|
|
363
|
-
_this__u8e3s4.
|
|
363
|
+
_this__u8e3s4.w15(1);
|
|
364
364
|
// Inline function 'kotlinx.coroutines.JobSupport.notifyHandlers' call
|
|
365
365
|
var exception = null;
|
|
366
366
|
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
|
|
367
|
-
var cur = _this__u8e3s4.
|
|
367
|
+
var cur = _this__u8e3s4.pz_1;
|
|
368
368
|
while (!equals(cur, _this__u8e3s4)) {
|
|
369
369
|
var node = cur;
|
|
370
370
|
var tmp;
|
|
@@ -375,7 +375,7 @@ function notifyCompletion($this, _this__u8e3s4, cause) {
|
|
|
375
375
|
}
|
|
376
376
|
if (tmp) {
|
|
377
377
|
try {
|
|
378
|
-
node.
|
|
378
|
+
node.cz(cause);
|
|
379
379
|
} catch ($p) {
|
|
380
380
|
if ($p instanceof Error) {
|
|
381
381
|
var ex = $p;
|
|
@@ -390,36 +390,36 @@ function notifyCompletion($this, _this__u8e3s4, cause) {
|
|
|
390
390
|
}
|
|
391
391
|
if (tmp_0 == null) {
|
|
392
392
|
// Inline function 'kotlin.run' call
|
|
393
|
-
exception = CompletionHandlerException().
|
|
393
|
+
exception = CompletionHandlerException().b12('Exception in completion handler ' + node.toString() + ' for ' + $this.toString(), ex);
|
|
394
394
|
}
|
|
395
395
|
} else {
|
|
396
396
|
throw $p;
|
|
397
397
|
}
|
|
398
398
|
}
|
|
399
399
|
}
|
|
400
|
-
cur = cur.
|
|
400
|
+
cur = cur.pz_1;
|
|
401
401
|
}
|
|
402
402
|
var tmp0_safe_receiver_0 = exception;
|
|
403
403
|
if (tmp0_safe_receiver_0 == null)
|
|
404
404
|
null;
|
|
405
405
|
else {
|
|
406
406
|
// Inline function 'kotlin.let' call
|
|
407
|
-
$this.
|
|
407
|
+
$this.xw(tmp0_safe_receiver_0);
|
|
408
408
|
}
|
|
409
409
|
}
|
|
410
410
|
function startInternal($this, state) {
|
|
411
411
|
if (state instanceof Empty()) {
|
|
412
|
-
if (state.
|
|
412
|
+
if (state.y15_1)
|
|
413
413
|
return 0;
|
|
414
|
-
if (!$this.
|
|
414
|
+
if (!$this.fw_1.atomicfu$compareAndSet(state, get_EMPTY_ACTIVE()))
|
|
415
415
|
return -1;
|
|
416
|
-
$this.
|
|
416
|
+
$this.kx();
|
|
417
417
|
return 1;
|
|
418
418
|
} else {
|
|
419
419
|
if (state instanceof InactiveNodeList()) {
|
|
420
|
-
if (!$this.
|
|
420
|
+
if (!$this.fw_1.atomicfu$compareAndSet(state, state.x15_1))
|
|
421
421
|
return -1;
|
|
422
|
-
$this.
|
|
422
|
+
$this.kx();
|
|
423
423
|
return 1;
|
|
424
424
|
} else {
|
|
425
425
|
return 0;
|
|
@@ -428,19 +428,19 @@ function startInternal($this, state) {
|
|
|
428
428
|
}
|
|
429
429
|
function promoteEmptyToNodeList($this, state) {
|
|
430
430
|
var list = new (NodeList())();
|
|
431
|
-
var update = state.
|
|
432
|
-
$this.
|
|
431
|
+
var update = state.y15_1 ? list : new (InactiveNodeList())(list);
|
|
432
|
+
$this.fw_1.atomicfu$compareAndSet(state, update);
|
|
433
433
|
}
|
|
434
434
|
function promoteSingleToNodeList($this, state) {
|
|
435
|
-
state.
|
|
435
|
+
state.uz(new (NodeList())());
|
|
436
436
|
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.nextNode' call
|
|
437
|
-
var list = state.
|
|
438
|
-
$this.
|
|
437
|
+
var list = state.pz_1;
|
|
438
|
+
$this.fw_1.atomicfu$compareAndSet(state, list);
|
|
439
439
|
}
|
|
440
440
|
function joinInternal($this) {
|
|
441
441
|
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
442
442
|
while (true) {
|
|
443
|
-
var state = $this.
|
|
443
|
+
var state = $this.gx();
|
|
444
444
|
if (!(!(state == null) ? isInterface(state, Incomplete()) : false))
|
|
445
445
|
return false;
|
|
446
446
|
if (startInternal($this, state) >= 0)
|
|
@@ -449,21 +449,21 @@ function joinInternal($this) {
|
|
|
449
449
|
}
|
|
450
450
|
function joinSuspend($this, $completion) {
|
|
451
451
|
var cancellable = new (CancellableContinuationImpl())(intercepted($completion), 1);
|
|
452
|
-
cancellable.
|
|
452
|
+
cancellable.b10();
|
|
453
453
|
disposeOnCancellation(cancellable, invokeOnCompletion($this, VOID, new (ResumeOnCompletion())(cancellable)));
|
|
454
|
-
return cancellable.
|
|
454
|
+
return cancellable.c10();
|
|
455
455
|
}
|
|
456
456
|
function cancelMakeCompleting($this, cause) {
|
|
457
457
|
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
458
458
|
while (true) {
|
|
459
|
-
var state = $this.
|
|
459
|
+
var state = $this.gx();
|
|
460
460
|
var tmp;
|
|
461
461
|
if (!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
|
|
462
462
|
tmp = true;
|
|
463
463
|
} else {
|
|
464
464
|
var tmp_0;
|
|
465
465
|
if (state instanceof Finishing()) {
|
|
466
|
-
tmp_0 = state.
|
|
466
|
+
tmp_0 = state.z15();
|
|
467
467
|
} else {
|
|
468
468
|
tmp_0 = false;
|
|
469
469
|
}
|
|
@@ -484,13 +484,13 @@ function createCauseException($this, cause) {
|
|
|
484
484
|
var tmp_0;
|
|
485
485
|
if (cause == null) {
|
|
486
486
|
// Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
|
|
487
|
-
tmp_0 = JobCancellationException().
|
|
487
|
+
tmp_0 = JobCancellationException().v15(null == null ? $this.pw() : null, null, $this);
|
|
488
488
|
} else {
|
|
489
489
|
tmp_0 = cause;
|
|
490
490
|
}
|
|
491
491
|
tmp = tmp_0;
|
|
492
492
|
} else {
|
|
493
|
-
tmp = ((!(cause == null) ? isInterface(cause, ParentJob()) : false) ? cause : THROW_CCE()).
|
|
493
|
+
tmp = ((!(cause == null) ? isInterface(cause, ParentJob()) : false) ? cause : THROW_CCE()).cy();
|
|
494
494
|
}
|
|
495
495
|
return tmp;
|
|
496
496
|
}
|
|
@@ -498,14 +498,14 @@ function makeCancelling($this, cause) {
|
|
|
498
498
|
var causeExceptionCache = null;
|
|
499
499
|
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
500
500
|
while (true) {
|
|
501
|
-
var tmp0 = $this.
|
|
501
|
+
var tmp0 = $this.gx();
|
|
502
502
|
$l$block: {
|
|
503
503
|
if (tmp0 instanceof Finishing()) {
|
|
504
504
|
// Inline function 'kotlinx.coroutines.internal.synchronized' call
|
|
505
505
|
// Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
|
|
506
|
-
if (tmp0.
|
|
506
|
+
if (tmp0.a16())
|
|
507
507
|
return get_TOO_LATE_TO_CANCEL();
|
|
508
|
-
var wasCancelling = tmp0.
|
|
508
|
+
var wasCancelling = tmp0.n15();
|
|
509
509
|
if (!(cause == null) || !wasCancelling) {
|
|
510
510
|
var tmp0_elvis_lhs = causeExceptionCache;
|
|
511
511
|
var tmp;
|
|
@@ -518,10 +518,10 @@ function makeCancelling($this, cause) {
|
|
|
518
518
|
tmp = tmp0_elvis_lhs;
|
|
519
519
|
}
|
|
520
520
|
var causeException = tmp;
|
|
521
|
-
tmp0.
|
|
521
|
+
tmp0.b16(causeException);
|
|
522
522
|
}
|
|
523
523
|
// Inline function 'kotlin.takeIf' call
|
|
524
|
-
var this_1 = tmp0.
|
|
524
|
+
var this_1 = tmp0.c16();
|
|
525
525
|
var tmp_0;
|
|
526
526
|
if (!wasCancelling) {
|
|
527
527
|
tmp_0 = this_1;
|
|
@@ -533,7 +533,7 @@ function makeCancelling($this, cause) {
|
|
|
533
533
|
null;
|
|
534
534
|
else {
|
|
535
535
|
// Inline function 'kotlin.let' call
|
|
536
|
-
notifyCancelling($this, tmp0.
|
|
536
|
+
notifyCancelling($this, tmp0.j15_1, notifyRootCause);
|
|
537
537
|
}
|
|
538
538
|
return get_COMPLETING_ALREADY();
|
|
539
539
|
} else {
|
|
@@ -549,7 +549,7 @@ function makeCancelling($this, cause) {
|
|
|
549
549
|
tmp_1 = tmp2_elvis_lhs;
|
|
550
550
|
}
|
|
551
551
|
var causeException_0 = tmp_1;
|
|
552
|
-
if (tmp0.
|
|
552
|
+
if (tmp0.mw()) {
|
|
553
553
|
if (tryMakeCancelling($this, tmp0, causeException_0))
|
|
554
554
|
return get_COMPLETING_ALREADY();
|
|
555
555
|
} else {
|
|
@@ -571,7 +571,7 @@ function makeCancelling($this, cause) {
|
|
|
571
571
|
}
|
|
572
572
|
}
|
|
573
573
|
function getOrPromoteCancellingList($this, state) {
|
|
574
|
-
var tmp0_elvis_lhs = state.
|
|
574
|
+
var tmp0_elvis_lhs = state.oz();
|
|
575
575
|
var tmp;
|
|
576
576
|
if (tmp0_elvis_lhs == null) {
|
|
577
577
|
var tmp_0;
|
|
@@ -604,7 +604,7 @@ function tryMakeCancelling($this, state, rootCause) {
|
|
|
604
604
|
}
|
|
605
605
|
var list = tmp;
|
|
606
606
|
var cancelling = new (Finishing())(list, false, rootCause);
|
|
607
|
-
if (!$this.
|
|
607
|
+
if (!$this.fw_1.atomicfu$compareAndSet(state, cancelling))
|
|
608
608
|
return false;
|
|
609
609
|
notifyCancelling($this, list, rootCause);
|
|
610
610
|
return true;
|
|
@@ -652,24 +652,24 @@ function tryMakeCompletingSlowPath($this, state, proposedUpdate) {
|
|
|
652
652
|
var notifyRootCause;
|
|
653
653
|
// Inline function 'kotlinx.coroutines.internal.synchronized' call
|
|
654
654
|
// Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
|
|
655
|
-
if (finishing.
|
|
655
|
+
if (finishing.z15())
|
|
656
656
|
return get_COMPLETING_ALREADY();
|
|
657
|
-
finishing.
|
|
657
|
+
finishing.d16(true);
|
|
658
658
|
if (!(finishing === state)) {
|
|
659
|
-
if (!$this.
|
|
659
|
+
if (!$this.fw_1.atomicfu$compareAndSet(state, finishing))
|
|
660
660
|
return get_COMPLETING_RETRY();
|
|
661
661
|
}
|
|
662
662
|
// Inline function 'kotlinx.coroutines.assert' call
|
|
663
|
-
var wasCancelling = finishing.
|
|
663
|
+
var wasCancelling = finishing.n15();
|
|
664
664
|
var tmp0_safe_receiver = proposedUpdate instanceof CompletedExceptionally() ? proposedUpdate : null;
|
|
665
665
|
if (tmp0_safe_receiver == null)
|
|
666
666
|
null;
|
|
667
667
|
else {
|
|
668
668
|
// Inline function 'kotlin.let' call
|
|
669
|
-
finishing.
|
|
669
|
+
finishing.b16(tmp0_safe_receiver.rw_1);
|
|
670
670
|
}
|
|
671
671
|
// Inline function 'kotlin.takeIf' call
|
|
672
|
-
var this_0 = finishing.
|
|
672
|
+
var this_0 = finishing.c16();
|
|
673
673
|
var tmp_0;
|
|
674
674
|
if (!wasCancelling) {
|
|
675
675
|
tmp_0 = this_0;
|
|
@@ -686,7 +686,7 @@ function tryMakeCompletingSlowPath($this, state, proposedUpdate) {
|
|
|
686
686
|
var child = nextChild($this, list);
|
|
687
687
|
if (!(child == null) && tryWaitForChild($this, finishing, child, proposedUpdate))
|
|
688
688
|
return get_COMPLETING_WAITING_CHILDREN();
|
|
689
|
-
list.
|
|
689
|
+
list.w15(2);
|
|
690
690
|
var anotherChild = nextChild($this, list);
|
|
691
691
|
if (!(anotherChild == null) && tryWaitForChild($this, finishing, anotherChild, proposedUpdate))
|
|
692
692
|
return get_COMPLETING_WAITING_CHILDREN();
|
|
@@ -694,7 +694,7 @@ function tryMakeCompletingSlowPath($this, state, proposedUpdate) {
|
|
|
694
694
|
}
|
|
695
695
|
function _get_exceptionOrNull__b3j7js($this, _this__u8e3s4) {
|
|
696
696
|
var tmp0_safe_receiver = _this__u8e3s4 instanceof CompletedExceptionally() ? _this__u8e3s4 : null;
|
|
697
|
-
return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
697
|
+
return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.rw_1;
|
|
698
698
|
}
|
|
699
699
|
function tryWaitForChild($this, state, child, proposedUpdate) {
|
|
700
700
|
var $this_0 = $this;
|
|
@@ -703,7 +703,7 @@ function tryWaitForChild($this, state, child, proposedUpdate) {
|
|
|
703
703
|
var proposedUpdate_0 = proposedUpdate;
|
|
704
704
|
$l$1: do {
|
|
705
705
|
$l$0: do {
|
|
706
|
-
var handle = invokeOnCompletion(child_0.
|
|
706
|
+
var handle = invokeOnCompletion(child_0.i16_1, false, new (ChildCompletion())($this_0, state_0, child_0, proposedUpdate_0));
|
|
707
707
|
if (!(handle === NonDisposableHandle_instance))
|
|
708
708
|
return true;
|
|
709
709
|
var tmp0_elvis_lhs = nextChild($this_0, child_0);
|
|
@@ -732,29 +732,29 @@ function continueCompleting($this, state, lastChild, proposedUpdate) {
|
|
|
732
732
|
var waitChild = nextChild($this, lastChild);
|
|
733
733
|
if (!(waitChild == null) && tryWaitForChild($this, state, waitChild, proposedUpdate))
|
|
734
734
|
return Unit_instance;
|
|
735
|
-
state.
|
|
735
|
+
state.j15_1.w15(2);
|
|
736
736
|
var waitChildAgain = nextChild($this, lastChild);
|
|
737
737
|
if (!(waitChildAgain == null) && tryWaitForChild($this, state, waitChildAgain, proposedUpdate)) {
|
|
738
738
|
return Unit_instance;
|
|
739
739
|
}
|
|
740
740
|
var finalState = finalizeFinishingState($this, state, proposedUpdate);
|
|
741
|
-
$this.
|
|
741
|
+
$this.ww(finalState);
|
|
742
742
|
}
|
|
743
743
|
function nextChild($this, _this__u8e3s4) {
|
|
744
744
|
var cur = _this__u8e3s4;
|
|
745
745
|
$l$loop: while (true) {
|
|
746
746
|
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.isRemoved' call
|
|
747
|
-
if (!cur.
|
|
747
|
+
if (!cur.rz_1) {
|
|
748
748
|
break $l$loop;
|
|
749
749
|
}
|
|
750
750
|
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.prevNode' call
|
|
751
|
-
cur = cur.
|
|
751
|
+
cur = cur.qz_1;
|
|
752
752
|
}
|
|
753
753
|
$l$loop_0: while (true) {
|
|
754
754
|
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.nextNode' call
|
|
755
|
-
cur = cur.
|
|
755
|
+
cur = cur.pz_1;
|
|
756
756
|
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.isRemoved' call
|
|
757
|
-
if (cur.
|
|
757
|
+
if (cur.rz_1)
|
|
758
758
|
continue $l$loop_0;
|
|
759
759
|
if (cur instanceof ChildHandleNode())
|
|
760
760
|
return cur;
|
|
@@ -765,10 +765,10 @@ function nextChild($this, _this__u8e3s4) {
|
|
|
765
765
|
function stateString($this, state) {
|
|
766
766
|
var tmp;
|
|
767
767
|
if (state instanceof Finishing()) {
|
|
768
|
-
tmp = state.
|
|
768
|
+
tmp = state.n15() ? 'Cancelling' : state.z15() ? 'Completing' : 'Active';
|
|
769
769
|
} else {
|
|
770
770
|
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
771
|
-
tmp = state.
|
|
771
|
+
tmp = state.mw() ? 'Active' : 'New';
|
|
772
772
|
} else {
|
|
773
773
|
if (state instanceof CompletedExceptionally()) {
|
|
774
774
|
tmp = 'Cancelled';
|
|
@@ -785,36 +785,36 @@ function Finishing() {
|
|
|
785
785
|
class $ extends SynchronizedObject() {
|
|
786
786
|
constructor(list, isCompleting, rootCause) {
|
|
787
787
|
super();
|
|
788
|
-
this.
|
|
789
|
-
this.
|
|
790
|
-
this.
|
|
791
|
-
this.
|
|
788
|
+
this.j15_1 = list;
|
|
789
|
+
this.k15_1 = atomic$boolean$1(isCompleting);
|
|
790
|
+
this.l15_1 = atomic$ref$1(rootCause);
|
|
791
|
+
this.m15_1 = atomic$ref$1(null);
|
|
792
792
|
}
|
|
793
|
-
|
|
794
|
-
return this.
|
|
793
|
+
oz() {
|
|
794
|
+
return this.j15_1;
|
|
795
795
|
}
|
|
796
|
-
|
|
797
|
-
this.
|
|
796
|
+
d16(value) {
|
|
797
|
+
this.k15_1.kotlinx$atomicfu$value = value;
|
|
798
798
|
}
|
|
799
|
-
|
|
800
|
-
return this.
|
|
799
|
+
z15() {
|
|
800
|
+
return this.k15_1.kotlinx$atomicfu$value;
|
|
801
801
|
}
|
|
802
|
-
|
|
803
|
-
this.
|
|
802
|
+
j16(value) {
|
|
803
|
+
this.l15_1.kotlinx$atomicfu$value = value;
|
|
804
804
|
}
|
|
805
|
-
|
|
806
|
-
return this.
|
|
805
|
+
c16() {
|
|
806
|
+
return this.l15_1.kotlinx$atomicfu$value;
|
|
807
807
|
}
|
|
808
|
-
|
|
808
|
+
a16() {
|
|
809
809
|
return _get_exceptionsHolder__nhszp(this) === get_SEALED();
|
|
810
810
|
}
|
|
811
|
-
|
|
812
|
-
return !(this.
|
|
811
|
+
n15() {
|
|
812
|
+
return !(this.c16() == null);
|
|
813
813
|
}
|
|
814
|
-
|
|
815
|
-
return this.
|
|
814
|
+
mw() {
|
|
815
|
+
return this.c16() == null;
|
|
816
816
|
}
|
|
817
|
-
|
|
817
|
+
o15(proposedException) {
|
|
818
818
|
var eh = _get_exceptionsHolder__nhszp(this);
|
|
819
819
|
var tmp;
|
|
820
820
|
if (eh == null) {
|
|
@@ -835,7 +835,7 @@ function Finishing() {
|
|
|
835
835
|
}
|
|
836
836
|
}
|
|
837
837
|
var list = tmp;
|
|
838
|
-
var rootCause = this.
|
|
838
|
+
var rootCause = this.c16();
|
|
839
839
|
if (rootCause == null)
|
|
840
840
|
null;
|
|
841
841
|
else {
|
|
@@ -848,10 +848,10 @@ function Finishing() {
|
|
|
848
848
|
_set_exceptionsHolder__tqm22h(this, get_SEALED());
|
|
849
849
|
return list;
|
|
850
850
|
}
|
|
851
|
-
|
|
852
|
-
var rootCause = this.
|
|
851
|
+
b16(exception) {
|
|
852
|
+
var rootCause = this.c16();
|
|
853
853
|
if (rootCause == null) {
|
|
854
|
-
this.
|
|
854
|
+
this.j16(exception);
|
|
855
855
|
return Unit_instance;
|
|
856
856
|
}
|
|
857
857
|
if (exception === rootCause)
|
|
@@ -880,7 +880,7 @@ function Finishing() {
|
|
|
880
880
|
}
|
|
881
881
|
}
|
|
882
882
|
toString() {
|
|
883
|
-
return 'Finishing[cancelling=' + this.
|
|
883
|
+
return 'Finishing[cancelling=' + this.n15() + ', completing=' + this.z15() + ', rootCause=' + toString_0(this.c16()) + ', exceptions=' + toString_0(_get_exceptionsHolder__nhszp(this)) + ', list=' + this.j15_1.toString() + ']';
|
|
884
884
|
}
|
|
885
885
|
}
|
|
886
886
|
initMetadataForClass($, 'Finishing', VOID, VOID, [SynchronizedObject(), Incomplete()]);
|
|
@@ -894,16 +894,16 @@ function ChildCompletion() {
|
|
|
894
894
|
class $ extends JobNode() {
|
|
895
895
|
constructor(parent, state, child, proposedUpdate) {
|
|
896
896
|
super();
|
|
897
|
-
this.
|
|
898
|
-
this.
|
|
899
|
-
this.
|
|
900
|
-
this.
|
|
897
|
+
this.o16_1 = parent;
|
|
898
|
+
this.p16_1 = state;
|
|
899
|
+
this.q16_1 = child;
|
|
900
|
+
this.r16_1 = proposedUpdate;
|
|
901
901
|
}
|
|
902
|
-
|
|
902
|
+
fz() {
|
|
903
903
|
return false;
|
|
904
904
|
}
|
|
905
|
-
|
|
906
|
-
continueCompleting(this.
|
|
905
|
+
cz(cause) {
|
|
906
|
+
continueCompleting(this.o16_1, this.p16_1, this.q16_1, this.r16_1);
|
|
907
907
|
}
|
|
908
908
|
}
|
|
909
909
|
initMetadataForClass($, 'ChildCompletion');
|
|
@@ -917,12 +917,12 @@ function AwaitContinuation() {
|
|
|
917
917
|
class $ extends CancellableContinuationImpl() {
|
|
918
918
|
constructor(delegate, job) {
|
|
919
919
|
super(delegate, 1);
|
|
920
|
-
this.
|
|
920
|
+
this.y16_1 = job;
|
|
921
921
|
}
|
|
922
|
-
|
|
923
|
-
var state = this.
|
|
922
|
+
t12(parent) {
|
|
923
|
+
var state = this.y16_1.gx();
|
|
924
924
|
if (state instanceof Finishing()) {
|
|
925
|
-
var tmp0_safe_receiver = state.
|
|
925
|
+
var tmp0_safe_receiver = state.c16();
|
|
926
926
|
if (tmp0_safe_receiver == null)
|
|
927
927
|
null;
|
|
928
928
|
else {
|
|
@@ -931,10 +931,10 @@ function AwaitContinuation() {
|
|
|
931
931
|
}
|
|
932
932
|
}
|
|
933
933
|
if (state instanceof CompletedExceptionally())
|
|
934
|
-
return state.
|
|
935
|
-
return parent.
|
|
934
|
+
return state.rw_1;
|
|
935
|
+
return parent.lx();
|
|
936
936
|
}
|
|
937
|
-
|
|
937
|
+
g13() {
|
|
938
938
|
return 'AwaitContinuation';
|
|
939
939
|
}
|
|
940
940
|
}
|
|
@@ -945,71 +945,71 @@ function AwaitContinuation() {
|
|
|
945
945
|
}
|
|
946
946
|
function awaitSuspend($this, $completion) {
|
|
947
947
|
var cont = new (AwaitContinuation())(intercepted($completion), $this);
|
|
948
|
-
cont.
|
|
948
|
+
cont.b10();
|
|
949
949
|
disposeOnCancellation(cont, invokeOnCompletion($this, VOID, new (ResumeAwaitOnCompletion())(cont)));
|
|
950
|
-
return cont.
|
|
950
|
+
return cont.c10();
|
|
951
951
|
}
|
|
952
952
|
var JobSupportClass;
|
|
953
953
|
function JobSupport() {
|
|
954
954
|
if (JobSupportClass === VOID) {
|
|
955
955
|
class $ {
|
|
956
956
|
constructor(active) {
|
|
957
|
-
this.
|
|
958
|
-
this.
|
|
957
|
+
this.fw_1 = atomic$ref$1(active ? get_EMPTY_ACTIVE() : get_EMPTY_NEW());
|
|
958
|
+
this.gw_1 = atomic$ref$1(null);
|
|
959
959
|
}
|
|
960
960
|
g3() {
|
|
961
961
|
return Key_instance;
|
|
962
962
|
}
|
|
963
|
-
|
|
964
|
-
this.
|
|
963
|
+
dx(value) {
|
|
964
|
+
this.gw_1.kotlinx$atomicfu$value = value;
|
|
965
965
|
}
|
|
966
|
-
|
|
967
|
-
return this.
|
|
966
|
+
ex() {
|
|
967
|
+
return this.gw_1.kotlinx$atomicfu$value;
|
|
968
968
|
}
|
|
969
|
-
|
|
970
|
-
var tmp0_safe_receiver = this.
|
|
971
|
-
return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
969
|
+
fx() {
|
|
970
|
+
var tmp0_safe_receiver = this.ex();
|
|
971
|
+
return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.fx();
|
|
972
972
|
}
|
|
973
|
-
|
|
973
|
+
hw(parent) {
|
|
974
974
|
// Inline function 'kotlinx.coroutines.assert' call
|
|
975
975
|
if (parent == null) {
|
|
976
|
-
this.
|
|
976
|
+
this.dx(NonDisposableHandle_instance);
|
|
977
977
|
return Unit_instance;
|
|
978
978
|
}
|
|
979
|
-
parent.
|
|
980
|
-
var handle = parent.
|
|
981
|
-
this.
|
|
982
|
-
if (this.
|
|
983
|
-
handle.
|
|
984
|
-
this.
|
|
979
|
+
parent.jx();
|
|
980
|
+
var handle = parent.ey(this);
|
|
981
|
+
this.dx(handle);
|
|
982
|
+
if (this.hx()) {
|
|
983
|
+
handle.bz();
|
|
984
|
+
this.dx(NonDisposableHandle_instance);
|
|
985
985
|
}
|
|
986
986
|
}
|
|
987
|
-
|
|
988
|
-
return this.
|
|
987
|
+
gx() {
|
|
988
|
+
return this.fw_1.kotlinx$atomicfu$value;
|
|
989
989
|
}
|
|
990
|
-
|
|
991
|
-
var state = this.
|
|
990
|
+
mw() {
|
|
991
|
+
var state = this.gx();
|
|
992
992
|
var tmp;
|
|
993
993
|
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
994
|
-
tmp = state.
|
|
994
|
+
tmp = state.mw();
|
|
995
995
|
} else {
|
|
996
996
|
tmp = false;
|
|
997
997
|
}
|
|
998
998
|
return tmp;
|
|
999
999
|
}
|
|
1000
|
-
|
|
1001
|
-
var tmp = this.
|
|
1000
|
+
hx() {
|
|
1001
|
+
var tmp = this.gx();
|
|
1002
1002
|
return !(!(tmp == null) ? isInterface(tmp, Incomplete()) : false);
|
|
1003
1003
|
}
|
|
1004
|
-
|
|
1005
|
-
var state = this.
|
|
1004
|
+
ix() {
|
|
1005
|
+
var state = this.gx();
|
|
1006
1006
|
var tmp;
|
|
1007
1007
|
if (state instanceof CompletedExceptionally()) {
|
|
1008
1008
|
tmp = true;
|
|
1009
1009
|
} else {
|
|
1010
1010
|
var tmp_0;
|
|
1011
1011
|
if (state instanceof Finishing()) {
|
|
1012
|
-
tmp_0 = state.
|
|
1012
|
+
tmp_0 = state.n15();
|
|
1013
1013
|
} else {
|
|
1014
1014
|
tmp_0 = false;
|
|
1015
1015
|
}
|
|
@@ -1017,10 +1017,10 @@ function JobSupport() {
|
|
|
1017
1017
|
}
|
|
1018
1018
|
return tmp;
|
|
1019
1019
|
}
|
|
1020
|
-
|
|
1020
|
+
jx() {
|
|
1021
1021
|
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1022
1022
|
while (true) {
|
|
1023
|
-
var state = this.
|
|
1023
|
+
var state = this.gx();
|
|
1024
1024
|
var tmp0_subject = startInternal(this, state);
|
|
1025
1025
|
if (tmp0_subject === 0)
|
|
1026
1026
|
return false;
|
|
@@ -1028,14 +1028,14 @@ function JobSupport() {
|
|
|
1028
1028
|
return true;
|
|
1029
1029
|
}
|
|
1030
1030
|
}
|
|
1031
|
-
|
|
1031
|
+
kx() {
|
|
1032
1032
|
}
|
|
1033
|
-
|
|
1034
|
-
var state = this.
|
|
1033
|
+
lx() {
|
|
1034
|
+
var state = this.gx();
|
|
1035
1035
|
var tmp;
|
|
1036
1036
|
if (state instanceof Finishing()) {
|
|
1037
|
-
var tmp0_safe_receiver = state.
|
|
1038
|
-
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : this.
|
|
1037
|
+
var tmp0_safe_receiver = state.c16();
|
|
1038
|
+
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : this.mx(tmp0_safe_receiver, get_classSimpleName(this) + ' is cancelling');
|
|
1039
1039
|
var tmp_0;
|
|
1040
1040
|
if (tmp1_elvis_lhs == null) {
|
|
1041
1041
|
var message = 'Job is still new or active: ' + this.toString();
|
|
@@ -1050,52 +1050,52 @@ function JobSupport() {
|
|
|
1050
1050
|
throw IllegalStateException().o(toString(message_0));
|
|
1051
1051
|
} else {
|
|
1052
1052
|
if (state instanceof CompletedExceptionally()) {
|
|
1053
|
-
tmp = this.
|
|
1053
|
+
tmp = this.nx(state.rw_1);
|
|
1054
1054
|
} else {
|
|
1055
|
-
tmp = JobCancellationException().
|
|
1055
|
+
tmp = JobCancellationException().v15(get_classSimpleName(this) + ' has completed normally', null, this);
|
|
1056
1056
|
}
|
|
1057
1057
|
}
|
|
1058
1058
|
}
|
|
1059
1059
|
return tmp;
|
|
1060
1060
|
}
|
|
1061
|
-
|
|
1061
|
+
mx(_this__u8e3s4, message) {
|
|
1062
1062
|
var tmp0_elvis_lhs = _this__u8e3s4 instanceof CancellationException() ? _this__u8e3s4 : null;
|
|
1063
1063
|
var tmp;
|
|
1064
1064
|
if (tmp0_elvis_lhs == null) {
|
|
1065
1065
|
// Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
|
|
1066
|
-
tmp = JobCancellationException().
|
|
1066
|
+
tmp = JobCancellationException().v15(message == null ? this.pw() : message, _this__u8e3s4, this);
|
|
1067
1067
|
} else {
|
|
1068
1068
|
tmp = tmp0_elvis_lhs;
|
|
1069
1069
|
}
|
|
1070
1070
|
return tmp;
|
|
1071
1071
|
}
|
|
1072
|
-
|
|
1072
|
+
nx(_this__u8e3s4, message, $super) {
|
|
1073
1073
|
message = message === VOID ? null : message;
|
|
1074
|
-
return $super === VOID ? this.
|
|
1074
|
+
return $super === VOID ? this.mx(_this__u8e3s4, message) : $super.mx.call(this, _this__u8e3s4, message);
|
|
1075
1075
|
}
|
|
1076
|
-
|
|
1077
|
-
return this.
|
|
1076
|
+
ox(handler) {
|
|
1077
|
+
return this.rx(true, new (InvokeOnCompletion())(handler));
|
|
1078
1078
|
}
|
|
1079
|
-
|
|
1079
|
+
px(onCancelling, invokeImmediately, handler) {
|
|
1080
1080
|
var tmp;
|
|
1081
1081
|
if (onCancelling) {
|
|
1082
1082
|
tmp = new (InvokeOnCancelling())(handler);
|
|
1083
1083
|
} else {
|
|
1084
1084
|
tmp = new (InvokeOnCompletion())(handler);
|
|
1085
1085
|
}
|
|
1086
|
-
return this.
|
|
1086
|
+
return this.rx(invokeImmediately, tmp);
|
|
1087
1087
|
}
|
|
1088
|
-
|
|
1089
|
-
node.
|
|
1088
|
+
rx(invokeImmediately, node) {
|
|
1089
|
+
node.mz_1 = this;
|
|
1090
1090
|
var tmp$ret$0;
|
|
1091
1091
|
$l$block_1: {
|
|
1092
1092
|
// Inline function 'kotlinx.coroutines.JobSupport.tryPutNodeIntoList' call
|
|
1093
1093
|
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1094
1094
|
while (true) {
|
|
1095
|
-
var state = this.
|
|
1095
|
+
var state = this.gx();
|
|
1096
1096
|
if (state instanceof Empty()) {
|
|
1097
|
-
if (state.
|
|
1098
|
-
if (this.
|
|
1097
|
+
if (state.y15_1) {
|
|
1098
|
+
if (this.fw_1.atomicfu$compareAndSet(state, node)) {
|
|
1099
1099
|
tmp$ret$0 = true;
|
|
1100
1100
|
break $l$block_1;
|
|
1101
1101
|
}
|
|
@@ -1104,26 +1104,26 @@ function JobSupport() {
|
|
|
1104
1104
|
}
|
|
1105
1105
|
} else {
|
|
1106
1106
|
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
1107
|
-
var list = state.
|
|
1107
|
+
var list = state.oz();
|
|
1108
1108
|
if (list == null) {
|
|
1109
1109
|
promoteSingleToNodeList(this, state instanceof JobNode() ? state : THROW_CCE());
|
|
1110
1110
|
} else {
|
|
1111
1111
|
var tmp;
|
|
1112
|
-
if (node.
|
|
1112
|
+
if (node.fz()) {
|
|
1113
1113
|
var tmp0_safe_receiver = state instanceof Finishing() ? state : null;
|
|
1114
|
-
var rootCause = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
1114
|
+
var rootCause = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.c16();
|
|
1115
1115
|
var tmp_0;
|
|
1116
1116
|
if (rootCause == null) {
|
|
1117
|
-
tmp_0 = list.
|
|
1117
|
+
tmp_0 = list.sz(node, 5);
|
|
1118
1118
|
} else {
|
|
1119
1119
|
if (invokeImmediately) {
|
|
1120
|
-
node.
|
|
1120
|
+
node.cz(rootCause);
|
|
1121
1121
|
}
|
|
1122
1122
|
return NonDisposableHandle_instance;
|
|
1123
1123
|
}
|
|
1124
1124
|
tmp = tmp_0;
|
|
1125
1125
|
} else {
|
|
1126
|
-
tmp = list.
|
|
1126
|
+
tmp = list.sz(node, 1);
|
|
1127
1127
|
}
|
|
1128
1128
|
if (tmp) {
|
|
1129
1129
|
tmp$ret$0 = true;
|
|
@@ -1141,13 +1141,13 @@ function JobSupport() {
|
|
|
1141
1141
|
if (added)
|
|
1142
1142
|
return node;
|
|
1143
1143
|
else if (invokeImmediately) {
|
|
1144
|
-
var tmp_1 = this.
|
|
1144
|
+
var tmp_1 = this.gx();
|
|
1145
1145
|
var tmp0_safe_receiver_0 = tmp_1 instanceof CompletedExceptionally() ? tmp_1 : null;
|
|
1146
|
-
node.
|
|
1146
|
+
node.cz(tmp0_safe_receiver_0 == null ? null : tmp0_safe_receiver_0.rw_1);
|
|
1147
1147
|
}
|
|
1148
1148
|
return NonDisposableHandle_instance;
|
|
1149
1149
|
}
|
|
1150
|
-
|
|
1150
|
+
sx($completion) {
|
|
1151
1151
|
if (!joinInternal(this)) {
|
|
1152
1152
|
// Inline function 'kotlin.js.getCoroutineContext' call
|
|
1153
1153
|
var tmp$ret$0 = $completion.bd();
|
|
@@ -1156,19 +1156,19 @@ function JobSupport() {
|
|
|
1156
1156
|
}
|
|
1157
1157
|
return joinSuspend(this, $completion);
|
|
1158
1158
|
}
|
|
1159
|
-
|
|
1159
|
+
tx(node) {
|
|
1160
1160
|
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1161
1161
|
while (true) {
|
|
1162
|
-
var state = this.
|
|
1162
|
+
var state = this.gx();
|
|
1163
1163
|
if (state instanceof JobNode()) {
|
|
1164
1164
|
if (!(state === node))
|
|
1165
1165
|
return Unit_instance;
|
|
1166
|
-
if (this.
|
|
1166
|
+
if (this.fw_1.atomicfu$compareAndSet(state, get_EMPTY_ACTIVE()))
|
|
1167
1167
|
return Unit_instance;
|
|
1168
1168
|
} else {
|
|
1169
1169
|
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
1170
|
-
if (!(state.
|
|
1171
|
-
node.
|
|
1170
|
+
if (!(state.oz() == null)) {
|
|
1171
|
+
node.tz();
|
|
1172
1172
|
}
|
|
1173
1173
|
return Unit_instance;
|
|
1174
1174
|
} else {
|
|
@@ -1177,39 +1177,39 @@ function JobSupport() {
|
|
|
1177
1177
|
}
|
|
1178
1178
|
}
|
|
1179
1179
|
}
|
|
1180
|
-
|
|
1180
|
+
ux() {
|
|
1181
1181
|
return false;
|
|
1182
1182
|
}
|
|
1183
|
-
|
|
1183
|
+
vx(cause) {
|
|
1184
1184
|
var tmp;
|
|
1185
1185
|
if (cause == null) {
|
|
1186
1186
|
// Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
|
|
1187
|
-
tmp = JobCancellationException().
|
|
1187
|
+
tmp = JobCancellationException().v15(null == null ? this.pw() : null, null, this);
|
|
1188
1188
|
} else {
|
|
1189
1189
|
tmp = cause;
|
|
1190
1190
|
}
|
|
1191
|
-
this.
|
|
1191
|
+
this.xx(tmp);
|
|
1192
1192
|
}
|
|
1193
|
-
|
|
1193
|
+
pw() {
|
|
1194
1194
|
return 'Job was cancelled';
|
|
1195
1195
|
}
|
|
1196
|
-
|
|
1197
|
-
this.
|
|
1196
|
+
xx(cause) {
|
|
1197
|
+
this.by(cause);
|
|
1198
1198
|
}
|
|
1199
|
-
|
|
1200
|
-
this.
|
|
1199
|
+
yx(parentJob) {
|
|
1200
|
+
this.by(parentJob);
|
|
1201
1201
|
}
|
|
1202
|
-
|
|
1202
|
+
zx(cause) {
|
|
1203
1203
|
if (cause instanceof CancellationException())
|
|
1204
1204
|
return true;
|
|
1205
|
-
return this.
|
|
1205
|
+
return this.by(cause) && this.hy();
|
|
1206
1206
|
}
|
|
1207
|
-
|
|
1208
|
-
return this.
|
|
1207
|
+
ay(cause) {
|
|
1208
|
+
return this.by(cause);
|
|
1209
1209
|
}
|
|
1210
|
-
|
|
1210
|
+
by(cause) {
|
|
1211
1211
|
var finalState = get_COMPLETING_ALREADY();
|
|
1212
|
-
if (this.
|
|
1212
|
+
if (this.ux()) {
|
|
1213
1213
|
finalState = cancelMakeCompleting(this, cause);
|
|
1214
1214
|
if (finalState === get_COMPLETING_WAITING_CHILDREN())
|
|
1215
1215
|
return true;
|
|
@@ -1225,19 +1225,19 @@ function JobSupport() {
|
|
|
1225
1225
|
} else if (finalState === get_TOO_LATE_TO_CANCEL()) {
|
|
1226
1226
|
tmp = false;
|
|
1227
1227
|
} else {
|
|
1228
|
-
this.
|
|
1228
|
+
this.ww(finalState);
|
|
1229
1229
|
tmp = true;
|
|
1230
1230
|
}
|
|
1231
1231
|
return tmp;
|
|
1232
1232
|
}
|
|
1233
|
-
|
|
1234
|
-
var state = this.
|
|
1233
|
+
cy() {
|
|
1234
|
+
var state = this.gx();
|
|
1235
1235
|
var tmp;
|
|
1236
1236
|
if (state instanceof Finishing()) {
|
|
1237
|
-
tmp = state.
|
|
1237
|
+
tmp = state.c16();
|
|
1238
1238
|
} else {
|
|
1239
1239
|
if (state instanceof CompletedExceptionally()) {
|
|
1240
|
-
tmp = state.
|
|
1240
|
+
tmp = state.rw_1;
|
|
1241
1241
|
} else {
|
|
1242
1242
|
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
1243
1243
|
var message = 'Cannot be cancelling child in this state: ' + toString(state);
|
|
@@ -1249,12 +1249,12 @@ function JobSupport() {
|
|
|
1249
1249
|
}
|
|
1250
1250
|
var rootCause = tmp;
|
|
1251
1251
|
var tmp1_elvis_lhs = rootCause instanceof CancellationException() ? rootCause : null;
|
|
1252
|
-
return tmp1_elvis_lhs == null ? JobCancellationException().
|
|
1252
|
+
return tmp1_elvis_lhs == null ? JobCancellationException().v15('Parent job is ' + stateString(this, state), rootCause, this) : tmp1_elvis_lhs;
|
|
1253
1253
|
}
|
|
1254
|
-
|
|
1254
|
+
dy(proposedUpdate) {
|
|
1255
1255
|
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1256
1256
|
while (true) {
|
|
1257
|
-
var tmp0 = this.
|
|
1257
|
+
var tmp0 = this.gx();
|
|
1258
1258
|
$l$block: {
|
|
1259
1259
|
var finalState = tryMakeCompleting(this, tmp0, proposedUpdate);
|
|
1260
1260
|
if (finalState === get_COMPLETING_ALREADY())
|
|
@@ -1264,16 +1264,16 @@ function JobSupport() {
|
|
|
1264
1264
|
else if (finalState === get_COMPLETING_RETRY()) {
|
|
1265
1265
|
break $l$block;
|
|
1266
1266
|
} else {
|
|
1267
|
-
this.
|
|
1267
|
+
this.ww(finalState);
|
|
1268
1268
|
return true;
|
|
1269
1269
|
}
|
|
1270
1270
|
}
|
|
1271
1271
|
}
|
|
1272
1272
|
}
|
|
1273
|
-
|
|
1273
|
+
uw(proposedUpdate) {
|
|
1274
1274
|
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1275
1275
|
while (true) {
|
|
1276
|
-
var tmp0 = this.
|
|
1276
|
+
var tmp0 = this.gx();
|
|
1277
1277
|
$l$block: {
|
|
1278
1278
|
var finalState = tryMakeCompleting(this, tmp0, proposedUpdate);
|
|
1279
1279
|
if (finalState === get_COMPLETING_ALREADY())
|
|
@@ -1285,20 +1285,20 @@ function JobSupport() {
|
|
|
1285
1285
|
}
|
|
1286
1286
|
}
|
|
1287
1287
|
}
|
|
1288
|
-
|
|
1288
|
+
ey(child) {
|
|
1289
1289
|
// Inline function 'kotlin.also' call
|
|
1290
1290
|
var this_0 = new (ChildHandleNode())(child);
|
|
1291
|
-
this_0.
|
|
1291
|
+
this_0.mz_1 = this;
|
|
1292
1292
|
var node = this_0;
|
|
1293
1293
|
var tmp$ret$2;
|
|
1294
1294
|
$l$block_1: {
|
|
1295
1295
|
// Inline function 'kotlinx.coroutines.JobSupport.tryPutNodeIntoList' call
|
|
1296
1296
|
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1297
1297
|
while (true) {
|
|
1298
|
-
var state = this.
|
|
1298
|
+
var state = this.gx();
|
|
1299
1299
|
if (state instanceof Empty()) {
|
|
1300
|
-
if (state.
|
|
1301
|
-
if (this.
|
|
1300
|
+
if (state.y15_1) {
|
|
1301
|
+
if (this.fw_1.atomicfu$compareAndSet(state, node)) {
|
|
1302
1302
|
tmp$ret$2 = true;
|
|
1303
1303
|
break $l$block_1;
|
|
1304
1304
|
}
|
|
@@ -1307,27 +1307,27 @@ function JobSupport() {
|
|
|
1307
1307
|
}
|
|
1308
1308
|
} else {
|
|
1309
1309
|
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
1310
|
-
var list = state.
|
|
1310
|
+
var list = state.oz();
|
|
1311
1311
|
if (list == null) {
|
|
1312
1312
|
promoteSingleToNodeList(this, state instanceof JobNode() ? state : THROW_CCE());
|
|
1313
1313
|
} else {
|
|
1314
|
-
var addedBeforeCancellation = list.
|
|
1314
|
+
var addedBeforeCancellation = list.sz(node, 7);
|
|
1315
1315
|
var tmp;
|
|
1316
1316
|
if (addedBeforeCancellation) {
|
|
1317
1317
|
tmp = true;
|
|
1318
1318
|
} else {
|
|
1319
|
-
var addedBeforeCompletion = list.
|
|
1320
|
-
var latestState = this.
|
|
1319
|
+
var addedBeforeCompletion = list.sz(node, 3);
|
|
1320
|
+
var latestState = this.gx();
|
|
1321
1321
|
var tmp_0;
|
|
1322
1322
|
if (latestState instanceof Finishing()) {
|
|
1323
|
-
tmp_0 = latestState.
|
|
1323
|
+
tmp_0 = latestState.c16();
|
|
1324
1324
|
} else {
|
|
1325
1325
|
// Inline function 'kotlinx.coroutines.assert' call
|
|
1326
1326
|
var tmp0_safe_receiver = latestState instanceof CompletedExceptionally() ? latestState : null;
|
|
1327
|
-
tmp_0 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
1327
|
+
tmp_0 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.rw_1;
|
|
1328
1328
|
}
|
|
1329
1329
|
var rootCause = tmp_0;
|
|
1330
|
-
node.
|
|
1330
|
+
node.cz(rootCause);
|
|
1331
1331
|
var tmp_1;
|
|
1332
1332
|
if (addedBeforeCompletion) {
|
|
1333
1333
|
// Inline function 'kotlinx.coroutines.assert' call
|
|
@@ -1352,56 +1352,56 @@ function JobSupport() {
|
|
|
1352
1352
|
var added = tmp$ret$2;
|
|
1353
1353
|
if (added)
|
|
1354
1354
|
return node;
|
|
1355
|
-
var tmp_2 = this.
|
|
1355
|
+
var tmp_2 = this.gx();
|
|
1356
1356
|
var tmp0_safe_receiver_0 = tmp_2 instanceof CompletedExceptionally() ? tmp_2 : null;
|
|
1357
|
-
node.
|
|
1357
|
+
node.cz(tmp0_safe_receiver_0 == null ? null : tmp0_safe_receiver_0.rw_1);
|
|
1358
1358
|
return NonDisposableHandle_instance;
|
|
1359
1359
|
}
|
|
1360
|
-
|
|
1360
|
+
xw(exception) {
|
|
1361
1361
|
throw exception;
|
|
1362
1362
|
}
|
|
1363
|
-
|
|
1363
|
+
fy(cause) {
|
|
1364
1364
|
}
|
|
1365
|
-
|
|
1365
|
+
gy() {
|
|
1366
1366
|
return false;
|
|
1367
1367
|
}
|
|
1368
|
-
|
|
1368
|
+
hy() {
|
|
1369
1369
|
return true;
|
|
1370
1370
|
}
|
|
1371
|
-
|
|
1371
|
+
iy(exception) {
|
|
1372
1372
|
return false;
|
|
1373
1373
|
}
|
|
1374
|
-
|
|
1374
|
+
qw(state) {
|
|
1375
1375
|
}
|
|
1376
|
-
|
|
1376
|
+
ww(state) {
|
|
1377
1377
|
}
|
|
1378
1378
|
toString() {
|
|
1379
|
-
return this.
|
|
1379
|
+
return this.jy() + '@' + get_hexAddress(this);
|
|
1380
1380
|
}
|
|
1381
|
-
|
|
1382
|
-
return this.
|
|
1381
|
+
jy() {
|
|
1382
|
+
return this.yw() + '{' + stateString(this, this.gx()) + '}';
|
|
1383
1383
|
}
|
|
1384
|
-
|
|
1384
|
+
yw() {
|
|
1385
1385
|
return get_classSimpleName(this);
|
|
1386
1386
|
}
|
|
1387
|
-
|
|
1388
|
-
var state = this.
|
|
1387
|
+
ky() {
|
|
1388
|
+
var state = this.gx();
|
|
1389
1389
|
// Inline function 'kotlin.check' call
|
|
1390
1390
|
if (!!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
|
|
1391
1391
|
var message = 'This job has not completed yet';
|
|
1392
1392
|
throw IllegalStateException().o(toString(message));
|
|
1393
1393
|
}
|
|
1394
1394
|
if (state instanceof CompletedExceptionally())
|
|
1395
|
-
throw state.
|
|
1395
|
+
throw state.rw_1;
|
|
1396
1396
|
return unboxState(state);
|
|
1397
1397
|
}
|
|
1398
|
-
|
|
1398
|
+
ly($completion) {
|
|
1399
1399
|
$l$loop: while (true) {
|
|
1400
|
-
var state = this.
|
|
1400
|
+
var state = this.gx();
|
|
1401
1401
|
if (!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
|
|
1402
1402
|
if (state instanceof CompletedExceptionally()) {
|
|
1403
1403
|
// Inline function 'kotlinx.coroutines.internal.recoverAndThrow' call
|
|
1404
|
-
throw state.
|
|
1404
|
+
throw state.rw_1;
|
|
1405
1405
|
}
|
|
1406
1406
|
return unboxState(state);
|
|
1407
1407
|
}
|
|
@@ -1411,8 +1411,8 @@ function JobSupport() {
|
|
|
1411
1411
|
return awaitSuspend(this, $completion);
|
|
1412
1412
|
}
|
|
1413
1413
|
}
|
|
1414
|
-
protoOf($).
|
|
1415
|
-
protoOf($).
|
|
1414
|
+
protoOf($).qx = invokeOnCompletion$default;
|
|
1415
|
+
protoOf($).wx = cancel$default;
|
|
1416
1416
|
protoOf($).wo = plus;
|
|
1417
1417
|
protoOf($).rd = get;
|
|
1418
1418
|
protoOf($).vo = fold;
|
|
@@ -1423,9 +1423,9 @@ function JobSupport() {
|
|
|
1423
1423
|
return JobSupportClass;
|
|
1424
1424
|
}
|
|
1425
1425
|
function handlesExceptionF($this) {
|
|
1426
|
-
var tmp = $this.
|
|
1426
|
+
var tmp = $this.ex();
|
|
1427
1427
|
var tmp0_safe_receiver = tmp instanceof ChildHandleNode() ? tmp : null;
|
|
1428
|
-
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
1428
|
+
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.nz();
|
|
1429
1429
|
var tmp_0;
|
|
1430
1430
|
if (tmp1_elvis_lhs == null) {
|
|
1431
1431
|
return false;
|
|
@@ -1434,11 +1434,11 @@ function handlesExceptionF($this) {
|
|
|
1434
1434
|
}
|
|
1435
1435
|
var parentJob = tmp_0;
|
|
1436
1436
|
while (true) {
|
|
1437
|
-
if (parentJob.
|
|
1437
|
+
if (parentJob.hy())
|
|
1438
1438
|
return true;
|
|
1439
|
-
var tmp_1 = parentJob.
|
|
1439
|
+
var tmp_1 = parentJob.ex();
|
|
1440
1440
|
var tmp2_safe_receiver = tmp_1 instanceof ChildHandleNode() ? tmp_1 : null;
|
|
1441
|
-
var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.
|
|
1441
|
+
var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.nz();
|
|
1442
1442
|
var tmp_2;
|
|
1443
1443
|
if (tmp3_elvis_lhs == null) {
|
|
1444
1444
|
return false;
|
|
@@ -1454,20 +1454,20 @@ function JobImpl() {
|
|
|
1454
1454
|
class $ extends JobSupport() {
|
|
1455
1455
|
constructor(parent) {
|
|
1456
1456
|
super(true);
|
|
1457
|
-
this.
|
|
1458
|
-
this.
|
|
1457
|
+
this.hw(parent);
|
|
1458
|
+
this.b17_1 = handlesExceptionF(this);
|
|
1459
1459
|
}
|
|
1460
|
-
|
|
1460
|
+
ux() {
|
|
1461
1461
|
return true;
|
|
1462
1462
|
}
|
|
1463
|
-
|
|
1464
|
-
return this.
|
|
1463
|
+
hy() {
|
|
1464
|
+
return this.b17_1;
|
|
1465
1465
|
}
|
|
1466
|
-
|
|
1467
|
-
return this.
|
|
1466
|
+
t13() {
|
|
1467
|
+
return this.dy(Unit_instance);
|
|
1468
1468
|
}
|
|
1469
|
-
|
|
1470
|
-
return this.
|
|
1469
|
+
s13(exception) {
|
|
1470
|
+
return this.dy(new (CompletedExceptionally())(exception));
|
|
1471
1471
|
}
|
|
1472
1472
|
}
|
|
1473
1473
|
initMetadataForClass($, 'JobImpl', VOID, VOID, [JobSupport(), CompletableJob()], [0]);
|
|
@@ -1480,16 +1480,16 @@ function Empty() {
|
|
|
1480
1480
|
if (EmptyClass === VOID) {
|
|
1481
1481
|
class $ {
|
|
1482
1482
|
constructor(isActive) {
|
|
1483
|
-
this.
|
|
1483
|
+
this.y15_1 = isActive;
|
|
1484
1484
|
}
|
|
1485
|
-
|
|
1486
|
-
return this.
|
|
1485
|
+
mw() {
|
|
1486
|
+
return this.y15_1;
|
|
1487
1487
|
}
|
|
1488
|
-
|
|
1488
|
+
oz() {
|
|
1489
1489
|
return null;
|
|
1490
1490
|
}
|
|
1491
1491
|
toString() {
|
|
1492
|
-
return 'Empty{' + (this.
|
|
1492
|
+
return 'Empty{' + (this.y15_1 ? 'Active' : 'New') + '}';
|
|
1493
1493
|
}
|
|
1494
1494
|
}
|
|
1495
1495
|
initMetadataForClass($, 'Empty', VOID, VOID, [Incomplete()]);
|
|
@@ -1510,13 +1510,13 @@ var NodeListClass;
|
|
|
1510
1510
|
function NodeList() {
|
|
1511
1511
|
if (NodeListClass === VOID) {
|
|
1512
1512
|
class $ extends LockFreeLinkedListHead() {
|
|
1513
|
-
|
|
1513
|
+
mw() {
|
|
1514
1514
|
return true;
|
|
1515
1515
|
}
|
|
1516
|
-
|
|
1516
|
+
oz() {
|
|
1517
1517
|
return this;
|
|
1518
1518
|
}
|
|
1519
|
-
|
|
1519
|
+
f17(state) {
|
|
1520
1520
|
// Inline function 'kotlin.text.buildString' call
|
|
1521
1521
|
// Inline function 'kotlin.apply' call
|
|
1522
1522
|
var this_0 = StringBuilder().m1();
|
|
@@ -1525,7 +1525,7 @@ function NodeList() {
|
|
|
1525
1525
|
this_0.n1('}[');
|
|
1526
1526
|
var first = true;
|
|
1527
1527
|
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
|
|
1528
|
-
var cur = this.
|
|
1528
|
+
var cur = this.pz_1;
|
|
1529
1529
|
while (!equals(cur, this)) {
|
|
1530
1530
|
var node = cur;
|
|
1531
1531
|
if (node instanceof JobNode()) {
|
|
@@ -1535,13 +1535,13 @@ function NodeList() {
|
|
|
1535
1535
|
this_0.n1(', ');
|
|
1536
1536
|
this_0.t1(node);
|
|
1537
1537
|
}
|
|
1538
|
-
cur = cur.
|
|
1538
|
+
cur = cur.pz_1;
|
|
1539
1539
|
}
|
|
1540
1540
|
this_0.n1(']');
|
|
1541
1541
|
return this_0.toString();
|
|
1542
1542
|
}
|
|
1543
1543
|
toString() {
|
|
1544
|
-
return get_DEBUG() ? this.
|
|
1544
|
+
return get_DEBUG() ? this.f17('Active') : super.toString();
|
|
1545
1545
|
}
|
|
1546
1546
|
}
|
|
1547
1547
|
initMetadataForClass($, 'NodeList', NodeList, VOID, [LockFreeLinkedListHead(), Incomplete()]);
|
|
@@ -1554,7 +1554,7 @@ function IncompleteStateBox() {
|
|
|
1554
1554
|
if (IncompleteStateBoxClass === VOID) {
|
|
1555
1555
|
class $ {
|
|
1556
1556
|
constructor(state) {
|
|
1557
|
-
this.
|
|
1557
|
+
this.i15_1 = state;
|
|
1558
1558
|
}
|
|
1559
1559
|
}
|
|
1560
1560
|
initMetadataForClass($, 'IncompleteStateBox');
|
|
@@ -1577,16 +1577,16 @@ function InactiveNodeList() {
|
|
|
1577
1577
|
if (InactiveNodeListClass === VOID) {
|
|
1578
1578
|
class $ {
|
|
1579
1579
|
constructor(list) {
|
|
1580
|
-
this.
|
|
1580
|
+
this.x15_1 = list;
|
|
1581
1581
|
}
|
|
1582
|
-
|
|
1583
|
-
return this.
|
|
1582
|
+
oz() {
|
|
1583
|
+
return this.x15_1;
|
|
1584
1584
|
}
|
|
1585
|
-
|
|
1585
|
+
mw() {
|
|
1586
1586
|
return false;
|
|
1587
1587
|
}
|
|
1588
1588
|
toString() {
|
|
1589
|
-
return get_DEBUG() ? this.
|
|
1589
|
+
return get_DEBUG() ? this.x15_1.f17('New') : anyToString(this);
|
|
1590
1590
|
}
|
|
1591
1591
|
}
|
|
1592
1592
|
initMetadataForClass($, 'InactiveNodeList', VOID, VOID, [Incomplete()]);
|
|
@@ -1600,13 +1600,13 @@ function InvokeOnCompletion() {
|
|
|
1600
1600
|
class $ extends JobNode() {
|
|
1601
1601
|
constructor(handler) {
|
|
1602
1602
|
super();
|
|
1603
|
-
this.
|
|
1603
|
+
this.k17_1 = handler;
|
|
1604
1604
|
}
|
|
1605
|
-
|
|
1605
|
+
fz() {
|
|
1606
1606
|
return false;
|
|
1607
1607
|
}
|
|
1608
|
-
|
|
1609
|
-
return this.
|
|
1608
|
+
cz(cause) {
|
|
1609
|
+
return this.k17_1(cause);
|
|
1610
1610
|
}
|
|
1611
1611
|
}
|
|
1612
1612
|
initMetadataForClass($, 'InvokeOnCompletion');
|
|
@@ -1620,15 +1620,15 @@ function InvokeOnCancelling() {
|
|
|
1620
1620
|
class $ extends JobNode() {
|
|
1621
1621
|
constructor(handler) {
|
|
1622
1622
|
super();
|
|
1623
|
-
this.
|
|
1624
|
-
this.
|
|
1623
|
+
this.p17_1 = handler;
|
|
1624
|
+
this.q17_1 = atomic$boolean$1(false);
|
|
1625
1625
|
}
|
|
1626
|
-
|
|
1626
|
+
fz() {
|
|
1627
1627
|
return true;
|
|
1628
1628
|
}
|
|
1629
|
-
|
|
1630
|
-
if (this.
|
|
1631
|
-
this.
|
|
1629
|
+
cz(cause) {
|
|
1630
|
+
if (this.q17_1.atomicfu$compareAndSet(false, true))
|
|
1631
|
+
this.p17_1(cause);
|
|
1632
1632
|
}
|
|
1633
1633
|
}
|
|
1634
1634
|
initMetadataForClass($, 'InvokeOnCancelling');
|
|
@@ -1642,14 +1642,14 @@ function ResumeOnCompletion() {
|
|
|
1642
1642
|
class $ extends JobNode() {
|
|
1643
1643
|
constructor(continuation) {
|
|
1644
1644
|
super();
|
|
1645
|
-
this.
|
|
1645
|
+
this.v17_1 = continuation;
|
|
1646
1646
|
}
|
|
1647
|
-
|
|
1647
|
+
fz() {
|
|
1648
1648
|
return false;
|
|
1649
1649
|
}
|
|
1650
|
-
|
|
1650
|
+
cz(cause) {
|
|
1651
1651
|
// Inline function 'kotlin.coroutines.resume' call
|
|
1652
|
-
var this_0 = this.
|
|
1652
|
+
var this_0 = this.v17_1;
|
|
1653
1653
|
// Inline function 'kotlin.Companion.success' call
|
|
1654
1654
|
var tmp$ret$0 = _Result___init__impl__xyqfz8(Unit_instance);
|
|
1655
1655
|
this_0.dd(tmp$ret$0);
|
|
@@ -1667,19 +1667,19 @@ function ChildHandleNode() {
|
|
|
1667
1667
|
class $ extends JobNode() {
|
|
1668
1668
|
constructor(childJob) {
|
|
1669
1669
|
super();
|
|
1670
|
-
this.
|
|
1670
|
+
this.i16_1 = childJob;
|
|
1671
1671
|
}
|
|
1672
|
-
|
|
1673
|
-
return this.
|
|
1672
|
+
fx() {
|
|
1673
|
+
return this.nz();
|
|
1674
1674
|
}
|
|
1675
|
-
|
|
1675
|
+
fz() {
|
|
1676
1676
|
return true;
|
|
1677
1677
|
}
|
|
1678
|
-
|
|
1679
|
-
return this.
|
|
1678
|
+
cz(cause) {
|
|
1679
|
+
return this.i16_1.yx(this.nz());
|
|
1680
1680
|
}
|
|
1681
|
-
|
|
1682
|
-
return this.
|
|
1681
|
+
zx(cause) {
|
|
1682
|
+
return this.nz().zx(cause);
|
|
1683
1683
|
}
|
|
1684
1684
|
}
|
|
1685
1685
|
initMetadataForClass($, 'ChildHandleNode');
|
|
@@ -1693,23 +1693,23 @@ function ResumeAwaitOnCompletion() {
|
|
|
1693
1693
|
class $ extends JobNode() {
|
|
1694
1694
|
constructor(continuation) {
|
|
1695
1695
|
super();
|
|
1696
|
-
this.
|
|
1696
|
+
this.a18_1 = continuation;
|
|
1697
1697
|
}
|
|
1698
|
-
|
|
1698
|
+
fz() {
|
|
1699
1699
|
return false;
|
|
1700
1700
|
}
|
|
1701
|
-
|
|
1702
|
-
var state = this.
|
|
1701
|
+
cz(cause) {
|
|
1702
|
+
var state = this.nz().gx();
|
|
1703
1703
|
// Inline function 'kotlinx.coroutines.assert' call
|
|
1704
1704
|
if (state instanceof CompletedExceptionally()) {
|
|
1705
|
-
var tmp0 = this.
|
|
1705
|
+
var tmp0 = this.a18_1;
|
|
1706
1706
|
// Inline function 'kotlin.coroutines.resumeWithException' call
|
|
1707
1707
|
// Inline function 'kotlin.Companion.failure' call
|
|
1708
|
-
var exception = state.
|
|
1708
|
+
var exception = state.rw_1;
|
|
1709
1709
|
var tmp$ret$1 = _Result___init__impl__xyqfz8(createFailure(exception));
|
|
1710
1710
|
tmp0.dd(tmp$ret$1);
|
|
1711
1711
|
} else {
|
|
1712
|
-
var tmp0_0 = this.
|
|
1712
|
+
var tmp0_0 = this.a18_1;
|
|
1713
1713
|
var tmp = unboxState(state);
|
|
1714
1714
|
// Inline function 'kotlin.coroutines.resume' call
|
|
1715
1715
|
// Inline function 'kotlin.Companion.success' call
|