@continuous-excellence/coupling-cli 1.1.567 → 1.1.569
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 +39 -39
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +15 -15
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +26 -26
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +43 -43
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +26 -26
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs +51 -51
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +37 -37
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +57 -57
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +10 -10
- 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 +75 -75
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +51 -51
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +26 -26
- 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 +95 -95
- 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 +55 -55
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +14 -14
- 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 +27 -27
- 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 +16 -16
- 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 +21 -21
- 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 +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +19 -19
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +31 -31
- 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 +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs +16 -16
- 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/PartyContributionReportContributionsQuery.mjs +38 -38
- 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/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +39 -39
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +6 -6
- 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/ContributionDetails.mjs +47 -47
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +55 -55
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +68 -68
- 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 +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +36 -36
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +24 -24
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +33 -33
- 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 +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +4 -4
- 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/ContributionWindow_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +6 -6
- 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 +110 -110
- 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 +42 -42
- 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 +7 -7
- 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 +133 -133
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +56 -56
- 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 +84 -84
- 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 +110 -110
- 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 +219 -219
- 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 +27 -27
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +48 -48
- 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 +27 -27
- 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/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 +144 -144
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs.map +1 -1
- 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 +26 -26
- 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 +35 -35
- 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/WebSocketNetworkTransport.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +21 -21
- 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 +41 -41
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +66 -66
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
- 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 +94 -94
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +95 -95
- 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 +132 -132
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +46 -46
- 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 +182 -182
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +5 -5
- 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 +221 -221
- 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/command/SuspendingCliktCommand.mjs +2 -2
- 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 +65 -65
- 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 +21 -21
- 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 +114 -114
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +126 -126
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +57 -57
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +16 -16
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +4 -4
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +11 -11
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +4 -4
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +9 -9
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +3 -3
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +11 -11
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +78 -78
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +6 -6
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs +8 -8
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs.map +1 -1
- 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/DirectLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +24 -24
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +11 -11
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +11 -11
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Await.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +7 -7
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +73 -73
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Promise.js.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +56 -111
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +16 -16
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +12 -12
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +116 -9
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +20 -20
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collection.mjs +10 -10
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collection.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +14 -14
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs +26 -26
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Limit.mjs +16 -16
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Limit.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +9 -9
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +23 -23
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +130 -130
- 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/Transform.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +31 -31
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +72 -72
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +8 -8
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs +33 -33
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs +72 -72
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs +8 -8
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -1
- 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 +153 -153
- 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 +130 -130
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +5 -5
- 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/SerializationExceptions.mjs +19 -19
- 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 +30 -30
- 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 +84 -84
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +41 -41
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +48 -48
- 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 +55 -55
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +230 -230
- 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/JsonInternalDependencies.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +12 -12
- 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 +39 -39
- 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 +113 -113
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +180 -180
- 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 +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +55 -55
- 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 +143 -143
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonExceptions.mjs +19 -19
- 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 +179 -179
- 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 +64 -64
- 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 +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +21 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +40 -40
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +11 -11
- 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 +61 -61
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +8 -8
- 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 +179 -179
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +136 -136
- 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 +262 -262
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +168 -168
- 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 +71 -71
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +33 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +42 -42
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +46 -46
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +42 -42
- 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 +40 -40
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +19 -19
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +4 -4
- 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 +11 -11
- 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/browser/BrowserFetch.mjs +9 -9
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +3 -3
- 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 +55 -55
- 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 +60 -60
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +74 -74
- 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 +52 -52
- 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 +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +103 -103
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +53 -53
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +69 -69
- 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 +25 -25
- 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 +54 -54
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +32 -32
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +62 -62
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -1
- 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 +79 -79
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +16 -16
- 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 +58 -58
- 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 +10 -10
- 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 +17 -17
- 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 +16 -16
- 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 +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/JsUtils.js.mjs +15 -15
- 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 +25 -25
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs +24 -24
- 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 +14 -14
- 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 +266 -266
- 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 +11 -11
- package/kotlin/ktor-ktor-events/io/ktor/events/Events.mjs +5 -5
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +12 -12
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +92 -92
- 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 +31 -31
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +115 -115
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +3 -3
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +15 -15
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +14 -14
- 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 +57 -57
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.web.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 +23 -23
- package/kotlin/ktor-ktor-http/io/ktor/http/Url.mjs +76 -76
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +31 -31
- package/kotlin/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +8 -8
- package/kotlin/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +9 -9
- package/kotlin/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +11 -11
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +4 -4
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +85 -85
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +32 -32
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +43 -43
- 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 +66 -66
- 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 +119 -119
- 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 +50 -50
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +13 -13
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +64 -64
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +29 -29
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +11 -11
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +22 -22
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +12 -12
- 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 +27 -27
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +1 -1
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +5 -5
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +35 -35
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -1
- 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 +81 -81
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -1
- 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 +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.mjs +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.web.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/ByteChannels.mjs +49 -49
- package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +187 -187
- package/kotlin/ktor-ktor-utils/io/ktor/util/ContentEncoders.web.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs.map +1 -1
- 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 +134 -134
- 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 +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLogger.web.mjs +10 -10
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/Logger.web.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +28 -28
- 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 +48 -48
- 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 +111 -111
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs +41 -41
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +7 -7
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +5 -5
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +38 -38
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +41 -41
- 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 +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +21 -21
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +54 -54
- 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 +208 -208
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +23 -23
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +123 -123
- 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 +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +8 -8
- 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 +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +409 -409
- 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 +66 -66
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +4 -4
- 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 +164 -164
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +28 -28
- 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
|
@@ -32,36 +32,36 @@ function LockFreeTaskQueue() {
|
|
|
32
32
|
if (LockFreeTaskQueueClass === VOID) {
|
|
33
33
|
class $ {
|
|
34
34
|
constructor(singleConsumer) {
|
|
35
|
-
this.
|
|
35
|
+
this.i1k_1 = atomic$ref$1(new (LockFreeTaskQueueCore())(8, singleConsumer));
|
|
36
36
|
}
|
|
37
37
|
q2() {
|
|
38
|
-
return this.
|
|
38
|
+
return this.i1k_1.kotlinx$atomicfu$value.q2();
|
|
39
39
|
}
|
|
40
|
-
|
|
40
|
+
l1k(element) {
|
|
41
41
|
// Inline function 'kotlinx.atomicfu.loop' call
|
|
42
|
-
var this_0 = this.
|
|
42
|
+
var this_0 = this.i1k_1;
|
|
43
43
|
while (true) {
|
|
44
44
|
var cur = this_0.kotlinx$atomicfu$value;
|
|
45
|
-
switch (cur.
|
|
45
|
+
switch (cur.l1k(element)) {
|
|
46
46
|
case 0:
|
|
47
47
|
return true;
|
|
48
48
|
case 2:
|
|
49
49
|
return false;
|
|
50
50
|
case 1:
|
|
51
|
-
this.
|
|
51
|
+
this.i1k_1.atomicfu$compareAndSet(cur, cur.n1());
|
|
52
52
|
break;
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
bl() {
|
|
57
57
|
// Inline function 'kotlinx.atomicfu.loop' call
|
|
58
|
-
var this_0 = this.
|
|
58
|
+
var this_0 = this.i1k_1;
|
|
59
59
|
while (true) {
|
|
60
60
|
var cur = this_0.kotlinx$atomicfu$value;
|
|
61
61
|
var result = cur.bl();
|
|
62
|
-
if (!(result === Companion_getInstance().
|
|
62
|
+
if (!(result === Companion_getInstance().e1l_1))
|
|
63
63
|
return result;
|
|
64
|
-
this.
|
|
64
|
+
this.i1k_1.atomicfu$compareAndSet(cur, cur.n1());
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
}
|
|
@@ -71,22 +71,22 @@ function LockFreeTaskQueue() {
|
|
|
71
71
|
return LockFreeTaskQueueClass;
|
|
72
72
|
}
|
|
73
73
|
function fillPlaceholder($this, index, element) {
|
|
74
|
-
var old = $this.
|
|
74
|
+
var old = $this.r1k_1.atomicfu$get(index & $this.o1k_1).kotlinx$atomicfu$value;
|
|
75
75
|
var tmp;
|
|
76
76
|
if (old instanceof Placeholder()) {
|
|
77
|
-
tmp = old.
|
|
77
|
+
tmp = old.i1l_1 === index;
|
|
78
78
|
} else {
|
|
79
79
|
tmp = false;
|
|
80
80
|
}
|
|
81
81
|
if (tmp) {
|
|
82
|
-
$this.
|
|
82
|
+
$this.r1k_1.atomicfu$get(index & $this.o1k_1).kotlinx$atomicfu$value = element;
|
|
83
83
|
return $this;
|
|
84
84
|
}
|
|
85
85
|
return null;
|
|
86
86
|
}
|
|
87
87
|
function removeSlowPath($this, oldHead, newHead) {
|
|
88
88
|
// Inline function 'kotlinx.atomicfu.loop' call
|
|
89
|
-
var this_0 = $this.
|
|
89
|
+
var this_0 = $this.q1k_1;
|
|
90
90
|
while (true) {
|
|
91
91
|
var state = this_0.kotlinx$atomicfu$value;
|
|
92
92
|
// Inline function 'kotlinx.coroutines.internal.Companion.withState' call
|
|
@@ -97,14 +97,14 @@ function removeSlowPath($this, oldHead, newHead) {
|
|
|
97
97
|
if (!equalsLong(bitwiseAnd(state, new (Long())(0, 268435456)), new (Long())(0, 0))) {
|
|
98
98
|
return $this.n1();
|
|
99
99
|
}
|
|
100
|
-
if ($this.
|
|
101
|
-
$this.
|
|
100
|
+
if ($this.q1k_1.atomicfu$compareAndSet(state, Companion_getInstance().j1l(state, newHead))) {
|
|
101
|
+
$this.r1k_1.atomicfu$get(head & $this.o1k_1).kotlinx$atomicfu$value = null;
|
|
102
102
|
return null;
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
function markFrozen($this) {
|
|
107
|
-
var tmp0 = $this.
|
|
107
|
+
var tmp0 = $this.q1k_1;
|
|
108
108
|
var tmp$ret$0;
|
|
109
109
|
$l$block: {
|
|
110
110
|
// Inline function 'kotlinx.atomicfu.updateAndGet' call
|
|
@@ -123,28 +123,28 @@ function markFrozen($this) {
|
|
|
123
123
|
}
|
|
124
124
|
function allocateOrGetNextCopy($this, state) {
|
|
125
125
|
// Inline function 'kotlinx.atomicfu.loop' call
|
|
126
|
-
var this_0 = $this.
|
|
126
|
+
var this_0 = $this.p1k_1;
|
|
127
127
|
while (true) {
|
|
128
128
|
var next = this_0.kotlinx$atomicfu$value;
|
|
129
129
|
if (!(next == null))
|
|
130
130
|
return next;
|
|
131
|
-
$this.
|
|
131
|
+
$this.p1k_1.atomicfu$compareAndSet(null, allocateNextCopy($this, state));
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
134
|
function allocateNextCopy($this, state) {
|
|
135
|
-
var next = new (LockFreeTaskQueueCore())(imul($this.
|
|
135
|
+
var next = new (LockFreeTaskQueueCore())(imul($this.m1k_1, 2), $this.n1k_1);
|
|
136
136
|
// Inline function 'kotlinx.coroutines.internal.Companion.withState' call
|
|
137
137
|
Companion_getInstance();
|
|
138
138
|
var head = convertToInt(shiftRight(bitwiseAnd(state, new (Long())(1073741823, 0)), 0));
|
|
139
139
|
var tail = convertToInt(shiftRight(bitwiseAnd(state, new (Long())(-1073741824, 268435455)), 30));
|
|
140
140
|
var index = head;
|
|
141
|
-
while (!((index & $this.
|
|
142
|
-
var tmp0_elvis_lhs = $this.
|
|
141
|
+
while (!((index & $this.o1k_1) === (tail & $this.o1k_1))) {
|
|
142
|
+
var tmp0_elvis_lhs = $this.r1k_1.atomicfu$get(index & $this.o1k_1).kotlinx$atomicfu$value;
|
|
143
143
|
var value = tmp0_elvis_lhs == null ? new (Placeholder())(index) : tmp0_elvis_lhs;
|
|
144
|
-
next.
|
|
144
|
+
next.r1k_1.atomicfu$get(index & next.o1k_1).kotlinx$atomicfu$value = value;
|
|
145
145
|
index = index + 1 | 0;
|
|
146
146
|
}
|
|
147
|
-
next.
|
|
147
|
+
next.q1k_1.kotlinx$atomicfu$value = Companion_getInstance().k1l(state, new (Long())(0, 268435456));
|
|
148
148
|
return next;
|
|
149
149
|
}
|
|
150
150
|
var PlaceholderClass;
|
|
@@ -152,7 +152,7 @@ function Placeholder() {
|
|
|
152
152
|
if (PlaceholderClass === VOID) {
|
|
153
153
|
class $ {
|
|
154
154
|
constructor(index) {
|
|
155
|
-
this.
|
|
155
|
+
this.i1l_1 = index;
|
|
156
156
|
}
|
|
157
157
|
}
|
|
158
158
|
initMetadataForClass($, 'Placeholder');
|
|
@@ -166,33 +166,33 @@ function Companion() {
|
|
|
166
166
|
class $ {
|
|
167
167
|
constructor() {
|
|
168
168
|
Companion_instance = this;
|
|
169
|
-
this.
|
|
170
|
-
this.
|
|
171
|
-
this.
|
|
172
|
-
this.
|
|
173
|
-
this.
|
|
174
|
-
this.
|
|
175
|
-
this.
|
|
176
|
-
this.
|
|
177
|
-
this.
|
|
178
|
-
this.
|
|
179
|
-
this.
|
|
180
|
-
this.
|
|
181
|
-
this.
|
|
182
|
-
this.
|
|
183
|
-
this.
|
|
184
|
-
this.
|
|
169
|
+
this.s1k_1 = 8;
|
|
170
|
+
this.t1k_1 = 30;
|
|
171
|
+
this.u1k_1 = 1073741823;
|
|
172
|
+
this.v1k_1 = 0;
|
|
173
|
+
this.w1k_1 = new (Long())(1073741823, 0);
|
|
174
|
+
this.x1k_1 = 30;
|
|
175
|
+
this.y1k_1 = new (Long())(-1073741824, 268435455);
|
|
176
|
+
this.z1k_1 = 60;
|
|
177
|
+
this.a1l_1 = new (Long())(0, 268435456);
|
|
178
|
+
this.b1l_1 = 61;
|
|
179
|
+
this.c1l_1 = new (Long())(0, 536870912);
|
|
180
|
+
this.d1l_1 = 1024;
|
|
181
|
+
this.e1l_1 = new (Symbol())('REMOVE_FROZEN');
|
|
182
|
+
this.f1l_1 = 0;
|
|
183
|
+
this.g1l_1 = 1;
|
|
184
|
+
this.h1l_1 = 2;
|
|
185
185
|
}
|
|
186
|
-
|
|
186
|
+
k1l(_this__u8e3s4, other) {
|
|
187
187
|
return bitwiseAnd(_this__u8e3s4, invert(other));
|
|
188
188
|
}
|
|
189
|
-
|
|
190
|
-
return bitwiseOr(this.
|
|
189
|
+
j1l(_this__u8e3s4, newHead) {
|
|
190
|
+
return bitwiseOr(this.k1l(_this__u8e3s4, new (Long())(1073741823, 0)), shiftLeft(fromInt(newHead), 0));
|
|
191
191
|
}
|
|
192
|
-
|
|
193
|
-
return bitwiseOr(this.
|
|
192
|
+
l1l(_this__u8e3s4, newTail) {
|
|
193
|
+
return bitwiseOr(this.k1l(_this__u8e3s4, new (Long())(-1073741824, 268435455)), shiftLeft(fromInt(newTail), 30));
|
|
194
194
|
}
|
|
195
|
-
|
|
195
|
+
m1l(_this__u8e3s4) {
|
|
196
196
|
return !equalsLong(bitwiseAnd(_this__u8e3s4, new (Long())(0, 536870912)), new (Long())(0, 0)) ? 2 : 1;
|
|
197
197
|
}
|
|
198
198
|
}
|
|
@@ -213,55 +213,55 @@ function LockFreeTaskQueueCore() {
|
|
|
213
213
|
class $ {
|
|
214
214
|
constructor(capacity, singleConsumer) {
|
|
215
215
|
Companion_getInstance();
|
|
216
|
-
this.
|
|
217
|
-
this.
|
|
218
|
-
this.
|
|
219
|
-
this.
|
|
220
|
-
this.
|
|
221
|
-
this.
|
|
216
|
+
this.m1k_1 = capacity;
|
|
217
|
+
this.n1k_1 = singleConsumer;
|
|
218
|
+
this.o1k_1 = this.m1k_1 - 1 | 0;
|
|
219
|
+
this.p1k_1 = atomic$ref$1(null);
|
|
220
|
+
this.q1k_1 = atomic$long$1(new (Long())(0, 0));
|
|
221
|
+
this.r1k_1 = atomicfu$AtomicRefArray$ofNulls(this.m1k_1);
|
|
222
222
|
// Inline function 'kotlin.check' call
|
|
223
|
-
if (!(this.
|
|
223
|
+
if (!(this.o1k_1 <= 1073741823)) {
|
|
224
224
|
throw IllegalStateException().o('Check failed.');
|
|
225
225
|
}
|
|
226
226
|
// Inline function 'kotlin.check' call
|
|
227
|
-
if (!((this.
|
|
227
|
+
if (!((this.m1k_1 & this.o1k_1) === 0)) {
|
|
228
228
|
throw IllegalStateException().o('Check failed.');
|
|
229
229
|
}
|
|
230
230
|
}
|
|
231
231
|
q2() {
|
|
232
232
|
Companion_getInstance();
|
|
233
233
|
// Inline function 'kotlinx.coroutines.internal.Companion.withState' call
|
|
234
|
-
var this_0 = this.
|
|
234
|
+
var this_0 = this.q1k_1.kotlinx$atomicfu$value;
|
|
235
235
|
var head = convertToInt(shiftRight(bitwiseAnd(this_0, new (Long())(1073741823, 0)), 0));
|
|
236
236
|
var tail = convertToInt(shiftRight(bitwiseAnd(this_0, new (Long())(-1073741824, 268435455)), 30));
|
|
237
237
|
return (tail - head | 0) & 1073741823;
|
|
238
238
|
}
|
|
239
|
-
|
|
239
|
+
l1k(element) {
|
|
240
240
|
// Inline function 'kotlinx.atomicfu.loop' call
|
|
241
|
-
var this_0 = this.
|
|
241
|
+
var this_0 = this.q1k_1;
|
|
242
242
|
while (true) {
|
|
243
243
|
var tmp0 = this_0.kotlinx$atomicfu$value;
|
|
244
244
|
$l$block: {
|
|
245
245
|
if (!equalsLong(bitwiseAnd(tmp0, new (Long())(0, 805306368)), new (Long())(0, 0)))
|
|
246
|
-
return Companion_getInstance().
|
|
246
|
+
return Companion_getInstance().m1l(tmp0);
|
|
247
247
|
// Inline function 'kotlinx.coroutines.internal.Companion.withState' call
|
|
248
248
|
Companion_getInstance();
|
|
249
249
|
var head = convertToInt(shiftRight(bitwiseAnd(tmp0, new (Long())(1073741823, 0)), 0));
|
|
250
250
|
var tail = convertToInt(shiftRight(bitwiseAnd(tmp0, new (Long())(-1073741824, 268435455)), 30));
|
|
251
|
-
var mask = this.
|
|
251
|
+
var mask = this.o1k_1;
|
|
252
252
|
if (((tail + 2 | 0) & mask) === (head & mask))
|
|
253
253
|
return 1;
|
|
254
|
-
if (!this.
|
|
255
|
-
if (this.
|
|
254
|
+
if (!this.n1k_1 && !(this.r1k_1.atomicfu$get(tail & mask).kotlinx$atomicfu$value == null)) {
|
|
255
|
+
if (this.m1k_1 < 1024 || ((tail - head | 0) & 1073741823) > this.m1k_1 >> 1) {
|
|
256
256
|
return 1;
|
|
257
257
|
}
|
|
258
258
|
break $l$block;
|
|
259
259
|
}
|
|
260
260
|
var newTail = (tail + 1 | 0) & 1073741823;
|
|
261
|
-
if (this.
|
|
262
|
-
this.
|
|
261
|
+
if (this.q1k_1.atomicfu$compareAndSet(tmp0, Companion_getInstance().l1l(tmp0, newTail))) {
|
|
262
|
+
this.r1k_1.atomicfu$get(tail & mask).kotlinx$atomicfu$value = element;
|
|
263
263
|
var cur = this;
|
|
264
|
-
$l$loop_0: while (!equalsLong(bitwiseAnd(cur.
|
|
264
|
+
$l$loop_0: while (!equalsLong(bitwiseAnd(cur.q1k_1.kotlinx$atomicfu$value, new (Long())(0, 268435456)), new (Long())(0, 0))) {
|
|
265
265
|
var tmp0_elvis_lhs = fillPlaceholder(cur.n1(), tail, element);
|
|
266
266
|
var tmp;
|
|
267
267
|
if (tmp0_elvis_lhs == null) {
|
|
@@ -278,32 +278,32 @@ function LockFreeTaskQueueCore() {
|
|
|
278
278
|
}
|
|
279
279
|
bl() {
|
|
280
280
|
// Inline function 'kotlinx.atomicfu.loop' call
|
|
281
|
-
var this_0 = this.
|
|
281
|
+
var this_0 = this.q1k_1;
|
|
282
282
|
while (true) {
|
|
283
283
|
var tmp0 = this_0.kotlinx$atomicfu$value;
|
|
284
284
|
$l$block_0: {
|
|
285
285
|
if (!equalsLong(bitwiseAnd(tmp0, new (Long())(0, 268435456)), new (Long())(0, 0)))
|
|
286
|
-
return Companion_getInstance().
|
|
286
|
+
return Companion_getInstance().e1l_1;
|
|
287
287
|
// Inline function 'kotlinx.coroutines.internal.Companion.withState' call
|
|
288
288
|
Companion_getInstance();
|
|
289
289
|
var head = convertToInt(shiftRight(bitwiseAnd(tmp0, new (Long())(1073741823, 0)), 0));
|
|
290
290
|
var tail = convertToInt(shiftRight(bitwiseAnd(tmp0, new (Long())(-1073741824, 268435455)), 30));
|
|
291
|
-
if ((tail & this.
|
|
291
|
+
if ((tail & this.o1k_1) === (head & this.o1k_1))
|
|
292
292
|
return null;
|
|
293
|
-
var element = this.
|
|
293
|
+
var element = this.r1k_1.atomicfu$get(head & this.o1k_1).kotlinx$atomicfu$value;
|
|
294
294
|
if (element == null) {
|
|
295
|
-
if (this.
|
|
295
|
+
if (this.n1k_1)
|
|
296
296
|
return null;
|
|
297
297
|
break $l$block_0;
|
|
298
298
|
}
|
|
299
299
|
if (element instanceof Placeholder())
|
|
300
300
|
return null;
|
|
301
301
|
var newHead = (head + 1 | 0) & 1073741823;
|
|
302
|
-
if (this.
|
|
303
|
-
this.
|
|
302
|
+
if (this.q1k_1.atomicfu$compareAndSet(tmp0, Companion_getInstance().j1l(tmp0, newHead))) {
|
|
303
|
+
this.r1k_1.atomicfu$get(head & this.o1k_1).kotlinx$atomicfu$value = null;
|
|
304
304
|
return element;
|
|
305
305
|
}
|
|
306
|
-
if (!this.
|
|
306
|
+
if (!this.n1k_1) {
|
|
307
307
|
break $l$block_0;
|
|
308
308
|
}
|
|
309
309
|
var cur = this;
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/LockFreeTaskQueue.kt","../../../../../../../../../../opt/buildAgent/work/711ef0d9c7c28b00/atomicfu/src/commonMain/kotlin/kotlinx/atomicfu/AtomicFU.common.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["singleConsumer","<get-size>","addLast","element","removeFirstOrNull","result","fillPlaceholder","$this","index","old","removeSlowPath","oldHead","newHead","head","tail","markFrozen","cur","upd","allocateOrGetNextCopy","state","allocateNextCopy","next","value","wo","<this>","other","updateHead","updateTail","newTail","addFailReason","capacity","mask"],"mappings":"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"}
|
|
@@ -16,24 +16,24 @@ function NamedDispatcher() {
|
|
|
16
16
|
super();
|
|
17
17
|
var tmp = this;
|
|
18
18
|
var tmp0_elvis_lhs = isInterface(dispatcher, Delay()) ? dispatcher : null;
|
|
19
|
-
tmp.
|
|
20
|
-
this.
|
|
21
|
-
this.
|
|
19
|
+
tmp.o1l_1 = tmp0_elvis_lhs == null ? get_DefaultDelay() : tmp0_elvis_lhs;
|
|
20
|
+
this.p1l_1 = dispatcher;
|
|
21
|
+
this.q1l_1 = name;
|
|
22
22
|
}
|
|
23
23
|
m14(context) {
|
|
24
|
-
return this.
|
|
24
|
+
return this.p1l_1.m14(context);
|
|
25
25
|
}
|
|
26
26
|
p14(context, block) {
|
|
27
|
-
return this.
|
|
27
|
+
return this.p1l_1.p14(context, block);
|
|
28
28
|
}
|
|
29
29
|
toString() {
|
|
30
|
-
return this.
|
|
30
|
+
return this.q1l_1;
|
|
31
31
|
}
|
|
32
32
|
y14(timeMillis, continuation) {
|
|
33
|
-
this.
|
|
33
|
+
this.o1l_1.y14(timeMillis, continuation);
|
|
34
34
|
}
|
|
35
35
|
z14(timeMillis, block, context) {
|
|
36
|
-
return this.
|
|
36
|
+
return this.o1l_1.z14(timeMillis, block, context);
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
initMetadataForClass($, 'NamedDispatcher', VOID, VOID, [Delay()], [1]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/NamedDispatcher.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["dispatcher","name","isDispatchNeeded","context","dispatch","block","toString","scheduleResumeAfterDelay","timeMillis","continuation","invokeOnTimeout"],"mappings":";;;;;;;;;;;;;;kBAUYA,U,EACAC,I;;kBACyB,I;YAAA,qE;QAAA,qCAAwB,kBAAxB,iB;QAFjC,uB;QACA,iB;;SAGSC,CAAqBC,OAArBD,EAA2D;A,QAAoC,OAApC,IAAW,CAAX,KAAW,KAAiB,OAAjB,C;MAAwB,C;SAE9FE,CAAaD,O,EAA2BE,KAAxCD,EAA2D;A,QAAmC,OAAnC,IAAW,CAAX,KAAW,KAAS,OAAT,EAAkB,KAAlB,C;MAAuB,C;cAK7FE,CAAAA,EAAuB;A,QAC5B,OAAO,IAAP,CAAO,K;MACX,C;SAvBJC,CASAC,U,EAAAC,YATAF,EAAA;A,QAAA,wC;MAAA,C;SAAAG,CASAF,U,EAAAH,K,EAAAF,OATAO,EAAA;A,QAAA,iD;MAAA,C;;;;;;;;;;;"}
|
|
@@ -23,9 +23,9 @@ var UndeliveredElementExceptionClass;
|
|
|
23
23
|
function UndeliveredElementException() {
|
|
24
24
|
if (UndeliveredElementExceptionClass === VOID) {
|
|
25
25
|
class $ extends RuntimeException() {
|
|
26
|
-
static
|
|
26
|
+
static u1l(message, cause) {
|
|
27
27
|
var $this = this.yd(message, cause);
|
|
28
|
-
captureStack($this, $this.
|
|
28
|
+
captureStack($this, $this.t1l_1);
|
|
29
29
|
return $this;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -44,7 +44,7 @@ function callUndeliveredElementCatchingException(_this__u8e3s4, element, undeliv
|
|
|
44
44
|
if (!(undeliveredElementException == null) && !(undeliveredElementException.cause === ex)) {
|
|
45
45
|
addSuppressed(undeliveredElementException, ex);
|
|
46
46
|
} else {
|
|
47
|
-
return UndeliveredElementException().
|
|
47
|
+
return UndeliveredElementException().u1l('Exception in undelivered element handler for ' + toString(element), ex);
|
|
48
48
|
}
|
|
49
49
|
} else {
|
|
50
50
|
throw $p;
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/OnUndeliveredElement.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["callUndeliveredElement","<this>","element","context","message","cause","callUndeliveredElementCatchingException","undeliveredElementException","ex"],"mappings":";;;;;;;;;;;;+BAyBSA,CAAQC,a,EAA+CC,O,EAAYC,OAAnEH,EAA8F;A,MACnG,4EAAwC,OAAxC,EAAiD,IAAjD,C;EAAwD,+B;IAAA,I;;;IACpD,yBAAyB,OAAzB,EADJ,kBACI,C;;AAER,C;;;;;iBAM2CI,O,EAAiBC,K;4BAAqC,O,EAAS,K;;;;;;;;;;gDA5BjGC,CAAQL,a,EACbC,O,EACAK,2BAFKD,EAGuB;A,uEADgC,I;EAE5D,IAAI;A,IACA,cAAO,OAAP,C;EACJ,C;6BAAwB;A,UAAfE,O;MAGD,qCAA+B,IAA/B,KAAuC,8BAA4B,KAA5B,KAAsC,EAAtC,CAAvC,C,CAAiF;A,QACrD,cAA5B,2BAA4B,EAAc,EAAd,C;MAChC,C,MAAO;A,QACH,yCAAoC,+CAApC,YAAkF,OAAlF,GAA4F,EAA5F,C;MACJ,C;IACJ,C;;;;EACA,OAAO,2B;AACX,C;;;;;"}
|
|
@@ -40,13 +40,13 @@ function ContextScope() {
|
|
|
40
40
|
if (ContextScopeClass === VOID) {
|
|
41
41
|
class $ {
|
|
42
42
|
constructor(context) {
|
|
43
|
-
this.
|
|
43
|
+
this.v1l_1 = context;
|
|
44
44
|
}
|
|
45
45
|
bx() {
|
|
46
|
-
return this.
|
|
46
|
+
return this.v1l_1;
|
|
47
47
|
}
|
|
48
48
|
toString() {
|
|
49
|
-
return 'CoroutineScope(coroutineContext=' + toString(this.
|
|
49
|
+
return 'CoroutineScope(coroutineContext=' + toString(this.v1l_1) + ')';
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
initMetadataForClass($, 'ContextScope', VOID, VOID, [CoroutineScope()]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/Scopes.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["context","uCont","<get-isScopedCoroutine>","afterCompletion","state","afterCompletionUndispatched","afterResume","<get-coroutineContext>","toString"],"mappings":";;;;;;;;;;;;;;;;kBAWIA,O,EACUC,K;cACW,O,EAAS,I,EAAM,I;QADpC,kB;;QAM8CC,CAAAA,EAAQ;A,QAAI,OAAJ,I;MAAG,C;QAEhDC,CAAoBC,KAApBD,EAAiC;A,QAElB,8BAAd,YAAN,IAAM,CAAN,KAAM,CAAc,EAA8B,cAAc,KAAd,EAAqB,IAArB,CAAqB,KAArB,CAA9B,C;MACxB,C;SAMKE,CAAAA,EAAkC;A,MACvC,C;QAESC,CAAgBF,KAAhBE,EAA6B;A,QAElC,IAAM,CAAN,KAAM,IAAW,cAAc,KAAd,EAAqB,IAArB,CAAqB,KAArB,CAAX,C;MACV,C;;;;;;;;;;;kBAGwBN,O;QAC0B,oB;;QAAzCO,CAAAA,EAAA;A,QAAA,iB;MAAqC,C;cAErCC,CAAAA,EAAyB;A,QAAoD,OAAnD,kCAAmD,YAAlB,IAAkB,CAAlB,KAAkB,IAAF,G;MAAC,C;;;;;;;;;;;"}
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/internal/StackTraceRecovery.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["recoverStackTrace","exception","continuation","unwrap","initCause","<this>","cause"],"mappings":";;0BAIgBA,CAAqCC,S,EAAcC,YAAnDF,EAAuF;A,EAAS,OAAT,S;AAAQ,C;eAK/FG,CAA2BF,SAA3BE,EAA8C;A,EAAS,OAAT,S;AAAQ,C;kBAWtDC,CAAIC,a,EAAoBC,KAAxBF,EAA0C;AAC1D,C;4BAhBgBJ,CAAqCC,SAArCD,EAAwD;A,EAAS,OAAT,S;AAAQ,C;;;;;"}
|
|
@@ -9,10 +9,10 @@ function Symbol() {
|
|
|
9
9
|
if (SymbolClass === VOID) {
|
|
10
10
|
class $ {
|
|
11
11
|
constructor(symbol) {
|
|
12
|
-
this.
|
|
12
|
+
this.w1l_1 = symbol;
|
|
13
13
|
}
|
|
14
14
|
toString() {
|
|
15
|
-
return '<' + this.
|
|
15
|
+
return '<' + this.w1l_1 + '>';
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
initMetadataForClass($, 'Symbol');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/Symbol.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["symbol","toString"],"mappings":";;;;;;;;;;kBASgCA,M;QAAV,mB;;cACTC,CAAAA,EAAyB;A,QAAW,OAAV,GAAU,GAAR,IAAQ,CAAR,KAAQ,GAAF,G;MAAC,C;;;;;;;;;;;"}
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/SystemProps.common.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["systemProp","propertyName","defaultValue","minValue","maxValue","value","parsed"],"mappings":";;;;;;;;;;;;;;;qBAyBSA,CACLC,Y,EACAC,Y,EACAC,Q,EACAC,QAJKJ,EAKA;A,iCAFW,C;iCACI,U;EAC8E,OAAP,aAAtF,aAAW,YAAX,EAAsC,QAAb,YAAa,CAAtC,EAAyD,QAAT,QAAS,CAAzD,EAA4E,QAAT,QAAS,CAA5E,CAAsF,C;AAAM,C;qBAS5FA,CACLC,Y,EACAC,Y,EACAC,Q,EACAC,QAJKJ,EAKD;A,8CAFa,C,EAAA,C;8CACK,E,EAAA,U;MAEV,4BAAW,YAAX,C;;EAAA,2B;IAA4B,OAAO,Y;;UAAnC,c;;MAAZK,W;MACa,iBAAM,aAAN,KAAM,C;;EAAN,2B;;kBACC,mBAAD,GAAmB,YAAnB,GAA+B,4BAA/B,GAA0D,KAA1D,GAA+D,G;ICqG/B,gCAAoC,SAAR,OAAQ,CAApC,C;;YDtGhC,c;;MAAbC,c;EAEI,cAAW,QAAX,iCAAqB,QAArB,gB,CAA+B;A;oBACxB,mBAAD,GAAmB,YAAnB,GAA+B,uBAA/B,GAAqD,QAArD,cAA6D,IAA7D,GAAgE,QAAhE,cAAwE,YAAxE,GAAmF,MAAnF,cAAyF,G;ICmGtD,gCAAoC,SAAR,SAAQ,CAApC,C;EDlG7C,C;EACA,OAAO,M;AACX,C;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/internal/SystemProps.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["systemProp","propertyName"],"mappings":";;mBAEgBA,CAAeC,YAAfD,EAAgD;A,EAAI,OAAJ,I;AAAG,C;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/internal/ThreadContext.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["threadContextElements","context"],"mappings":";;8BAIgBA,CAA0BC,OAA1BD,EAA4D;A,EAAC,OAAD,C;AAAA,C;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/internal/ThreadLocal.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["get","set","value","commonThreadLocal","name"],"mappings":";;;;;;;;;;;QAG4B,iB;;SAEjBA,CAAAA,EAAe;A,QAAU,OAAV,IAAU,CAAV,K;MAAS,C;SACxBC,CAAQC,KAARD,EAAkB;A,QAAE,IAAK,SAAQ,K;MAAM,C;;;;;;;0BAGlCE,CAAyBC,IAAzBD,EAA+D;A,EAAmB,kC;AAAD,C;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/intrinsics/Cancellable.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/src/kotlin/util/Result.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["startCoroutineCancellable","<this>","completion","e","receiver","fatalCompletion","dispatcherFailure","reportException"],"mappings":";;;;;;;;;;;;;;;;;kCAcOA,CAAQC,a,EAA4CC,UAApDF,EAAyF;A;EA8B5F,IAAI;A,cA7BqC,YAAzC,4DAA6B,UAA7B,CAAyC,C;;QC6EpB,YAAb,2C;ID7E+C,mCAAqC,SAArC,C;EA+BvD,C;6BAAuB;A,UAAdG,M;MACL,kBAjCkG,UAiClG,EAA8B,CAA9B,C;IACJ,C;;;;EAhCH,oB;AAAD,C;oCAMSH,CAAWC,a,EAChBG,Q,EAAaF,UADRF,EAEL;A;EAoBA,IAAI;A,cAnB+C,YAAnD,8DAA6B,QAA7B,EAAuC,UAAvC,CAAmD,C;;QCmE9B,YAAb,2C;IDnEyD,mCAAqC,SAArC,C;EAqBjE,C;6BAAuB;A,UAAdG,M;MACL,kBAvBM,UAuBN,EAA8B,CAA9B,C;IACJ,C;;;;EAtBH,oB;AAAD,C;oCAMSH,CAAIC,a,EAA6CI,eAAjDL,EACL;A;EAWA,IAAI;A,cAVA,0B;;QC0DiB,YAAb,2C;ID1DU,mCAAqC,SAArC,C;EAYlB,C;6BAAuB;A,UAAdG,M;MACL,kBAdM,eAcN,EAA8B,CAA9B,C;IACJ,C;;;;EAbC,oB;AAAD,C;0BAgBIG,CAAsBJ,U,EAA6BC,CAAnDG,EAAiE;A;EAS3C,qC;UAAwB,C,CAAE,K;;UAAW,C;;MAA/DC,qB;;MCyCwC,YAAhC,6BAAO,cDxCsB,eCwCtB,CAAP,C;EDxCR,UAAW,IAAkB,SAAlB,C;EACX,MAAM,e;AACV,C;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/intrinsics/Undispatched.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/js/src/kotlin/coroutines/intrinsics/IntrinsicsJs.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/src/kotlin/util/Result.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/src/kotlin/coroutines/Continuation.kt"],"sourcesContent":[null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["startUndispatchedOrReturn","<this>","receiver","block","startCoroutineUndispatched","completion","actualCompletion","e","reportException","value","startUndispatchedOrReturnIgnoreTimeout","startUndispatched","alwaysRethrow","result","state","dispatchExceptionAndMakeCompleting","notOwnTimeout","cause"],"mappings":";;;;;;;;;;;;;;;;;;;;kCAwCSA,CAAWC,a,EAChBC,Q,EAAaC,KADRH,EAEC;A,EAAwD,OAAxD,iCAAkC,IAAlC,EAAwC,QAAxC,EAAkD,KAAlD,C;AAAuD,C;mCA9BxDI,CAAWH,a,EAA8CC,Q,EAAaG,UAAtED,EAAmG;A;MACxGE,mBAA6C,U;;EACjC,I;;IAGa,gBAAiB,K;;;UCyFpC,oDDvFE,aCuFF,EDvFsC,QCuFtC,EDvFgD,gBCuFhD,C;;;;UDrFGC,M;;MACqB,qC;gBAAwB,C,CAAE,K;;gBAAW,C;;UAA/DC,uB;;;UE+EoC,YAAhC,6BAAO,cF9E0B,eE8E1B,CAAP,C;MF9EJ,gBG8BJ,IAAkB,SAAlB,C;MH7BI,oB;;;;;MAVJC,W;EAYI,gBAAU,yBAAV,E,CAA+B;A;;QEkEd,YAAb,6BFhEoB,KEgEpB,C;IFhEJ,gBGgBJ,IAAkB,SAAlB,C;EHfA,C;AACJ,C;+CAiBSC,CAAWT,a,EAChBC,Q,EAAaC,KADRO,EAEC;A,EAAyD,OAAzD,iCAAkC,KAAlC,EAAyC,QAAzC,EAAmD,KAAnD,C;AAAwD,C;0BAW1DC,CAAWV,a,EACfW,a,EACAV,Q,EAAaC,KAFTQ,EAGA;A;EACS,I;;UC0CP,oDDzCF,KCyCE,EDzCwC,QCyCxC,EDzCkD,aCyClD,C;;;;UDxCGJ,M;MAGL,kDAAmC,CAAnC,C;;;YACKA,Q;+CACkB,G;;;;;;;MAP3BM,Y;EAiBI,eAAW,yBAAX,C;IAAgC,OAAO,yB;MAC3CC,QAAY,iBAAmB,MAAnB,C;EACR,cAAU,iCAAV,C;IAAuC,OAAO,yB;EAClD,mB;;EACW,8C;;IAEH,qBAAiB,6BAAc,KAAd,CAAoB,IAApB,CAAjB,C;MAA+C,MAAM,kBAAkB,KAAlB,CAAwB,IAAxB,EAA+B,aAA/B,CAA+B,KAA/B,C;;MACrD,+C;QAAoC,MAAM,kBAAkB,MAAlB,CAAyB,IAAzB,EAAgC,aAAhC,CAAgC,KAAhC,C;;gBAClC,M;;;;;YAGN,WAAN,KAAM,C;;EAPV,Y;AASJ,C;2CAMQC,CAAId,a,EAAqDM,CAAzDQ,EAAwF;A,EAC5F,gDAAsC,CAAtC,CAAwC,KAAxC,E;EACA,MAAM,kBAAkB,CAAlB,CAAoB,KAApB,EAA2B,aAA3B,CAA2B,KAA3B,C;AACV,C;sBAPQC,CAAIf,a,EAAgCgB,KAApCD,EAA+D;A;EAC5D,uD;UAAA,I;;UAA0C,QAAM,KAAN,KAAoB,aAApB,C;;EAAjD,U;AACJ,C;;;;;"}
|
|
@@ -66,7 +66,7 @@ function trySelectInternal($this, clauseObject, internalResult) {
|
|
|
66
66
|
tmp = tmp0_elvis_lhs;
|
|
67
67
|
}
|
|
68
68
|
var clause = tmp;
|
|
69
|
-
var onCancellation = clause.
|
|
69
|
+
var onCancellation = clause.a1m($this, internalResult);
|
|
70
70
|
if ($this.a1c_1.atomicfu$compareAndSet(curState, clause)) {
|
|
71
71
|
var cont = isInterface(curState, CancellableContinuation()) ? curState : THROW_CCE();
|
|
72
72
|
$this.c1c_1 = internalResult;
|
|
@@ -122,7 +122,7 @@ function findClause($this, clauseObject) {
|
|
|
122
122
|
var _iterator__ex2g4s = clauses.l1();
|
|
123
123
|
while (_iterator__ex2g4s.m1()) {
|
|
124
124
|
var element = _iterator__ex2g4s.n1();
|
|
125
|
-
if (element.
|
|
125
|
+
if (element.x1l_1 === clauseObject) {
|
|
126
126
|
tmp$ret$1 = element;
|
|
127
127
|
break $l$block;
|
|
128
128
|
}
|
|
@@ -144,9 +144,9 @@ var ClauseDataClass;
|
|
|
144
144
|
function ClauseData() {
|
|
145
145
|
if (ClauseDataClass === VOID) {
|
|
146
146
|
class $ {
|
|
147
|
-
|
|
148
|
-
var tmp0_safe_receiver = this.
|
|
149
|
-
return tmp0_safe_receiver == null ? null : tmp0_safe_receiver(select, this.
|
|
147
|
+
a1m(select, internalResult) {
|
|
148
|
+
var tmp0_safe_receiver = this.z1l_1;
|
|
149
|
+
return tmp0_safe_receiver == null ? null : tmp0_safe_receiver(select, this.y1l_1, internalResult);
|
|
150
150
|
}
|
|
151
151
|
}
|
|
152
152
|
initMetadataForClass($, 'ClauseData', VOID, VOID, VOID, [1]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/selects/Select.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/src/kotlin/util/Preconditions.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/common/src/generated/_Collections.kt"],"sourcesContent":[null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-STATE_REG>","<get-STATE_COMPLETED>","<get-STATE_CANCELLED>","<get-NO_RESULT>","trySelectInternal","$this","clauseObject","internalResult","curState","clause","onCancellation","cont","findClause","clauses","element","createOnCancellationAction","select","trySelectDetailed","result","TrySelectDetailedResult","trySelectInternalResult","tryResume","<this>","token","DUMMY_PROCESS_RESULT_FUNCTION$lambda","<init properties Select.kt>"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;sBAy3BQA,CAAAA,EAAA;A;EAAA,gB;AAAY,C;;4BACZC,CAAAA,EAAA;A;EAAA,sB;AAAkB,C;;4BAClBC,CAAAA,EAAA;A;EAAA,sB;AAAkB,C;;sBAIlBC,CAAAA,EAAA;A;EAAA,gB;AAAY,C;;;;;;;;;;;;0BAzQRC,CAAAC,K,EAAsBC,Y,EAAmBC,cAAzCH,EAAoE;A,kBACjE,I,EACH;A,QAAMI,WAAe,KAAfA,CAAe,KAAfA,CAAqB,sB;IAEvB,qD,CAAiC;A,UAChB,mCAAW,YAAX,C;;MAAA,2B;QAA4B,gB;;cAA5B,c;;UAAbC,Y;UACAC,iBAAqB,MAAO,KAA2B,KAA3B,EAAsD,cAAtD,C;MACxB,IAAA,KAAM,CAAN,KAAM,wBAAc,QAAd,EAAwB,MAAxB,CAAN,C,CAAuC;A,YAEvCC,OAAW,yE;QAGX,KAAK,SAAiB,c;QAClB,IAAK,UAAL,IAAK,EAAU,cAAV,CAAL,C;UAAgC,OAAO,C;QAE3C,KAAK,SAAiB,e;QACtB,OAAO,C;MACX,C;IACJ,C;;MAEA,4C;gBAAA,I;;gBAAiB,Q;;MAAjB,U;QAA0D,OAAO,C;;QAEjE,4C;UAAmB,OAAO,C;;UAI1B,sC;YAAiB,IAAA,KAAM,CAAN,KAAM,wBAAc,QAAd,EAAwB,OAAO,YAAP,CAAxB,CAAN,C;cAAqD,OAAO,C;;YAI7E,oC;cAAkB,IAAA,KAAM,CAAN,KAAM,wBAAc,QAAd,EAAwB,eAAW,YAAX,CAAxB,CAAN,C;gBAAwD,OAAO,C;;;4BAElE,oBAAD,YAAoB,QAApB,C;cClgBmB,gCAAoC,SAAR,OAAQ,CAApC,C;;;;;;EDmgBrC,C;AAER,C;mBAOQC,CAAAP,K,EAAeC,YAAfM,EAA+C;A,MAGrC,uBAAK,K;;EAAL,2B;IAAgB,OAAO,I;;UAAvB,c;;MAAdC,a;;;;;QE5XY,oBF8XL,OE9XK,K;WAAA,sB,EAAM;A,UAAjBC,UAAW,sB;MAAU,IAAU,OF8XV,CAAG,KAAH,KAAoB,YE9XpB,C;QAAoB,YAAO,O;;;IAAM,C;IAC3D,YAAO,I;;MF6XI,iBEvfJ,S;;EFufI,2B;;kBACO,qBAAD,YAAqB,YAArB,IAAiC,e;IClhBL,gCAAoC,SAAR,OAAQ,CAApC,C;;YDihBlC,c;;EAAP,Y;AAEJ,C;;;;;SAiLIC,CAA+BC,M,EAA2BT,cAA1DQ,EACI;A,YAAA,+B;QAAgE,OAArC,oCAA3B,kBAA2B,CAAO,MAAP,EAAe,IAAf,CAAe,KAAf,EAAsB,cAAtB,C;MAAoC,C;;;;;;;;;;;SAtOvEE,CAAsBX,Y,EAAmBY,MAAzCD,EACI;A,QAAgE,OAAhE,0BAAwB,wBAAkB,YAAlB,EAAgC,MAAhC,CAAxB,C;MAA+D,C;;;;;;;;;;;;;;;;gFApnBvE,Y,EAAA,C;gFAAA,Y,EAAA,C;+EAAA,W,EAAA,C;sFAAA,kB,EAAA,C;;;;;;;;;;;kCAg3BQE,CAA4BC,uBAA5BD,EAAqF;A;;EAAA,QAAK,uBAAL,C;SACzF,C;YAAyB,gD;;SACzB,C;YAAyB,gD;;SACzB,C;YAAwB,+C;;SACxB,C;YAA+B,sD;;;;;oBAChB,8BAAD,GAA8B,uB;MCjuBC,gCAAoC,SAAR,OAAQ,CAApC,C;;EDkuBhD,U;AAAD,C;kBAzBQE,CAAIC,a,EACRZ,cADIW,EAEG;A;MAEH,kDAAgB,IAAhB,EAAsB,cAAtB,C;;EAAA,2B;IAAyC,OAAO,K;;UAAhD,c;;MADJE,W;EAEA,iBAAe,KAAf,C;EACA,OAAO,I;AACX,C;6CA/qBmEC,CAAE,mB,EAAG,qB,EAAG,qBAARA,EAAA;A;EAAiB,OAAJ,I;AAAK,C;;;;;;;;;;;;;;;;;;2CArLrFC,CAAAA,E;;;oCAqLmE,oC;+BAosBpC,W;qCACM,iB;qCACA,iB;+BAIN,W;oCAIM,gB;;C;;;;;"}
|