@continuous-excellence/coupling-cli 1.1.568 → 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/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/stringJs.mjs +6 -6
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.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
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/ChannelFlow.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/js/runtime/coroutineInternalJS.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/js/src/kotlin/coroutines/intrinsics/IntrinsicsJs.kt"],"sourcesContent":[null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["invoke","$completion","ChannelFlow$<get-collectToFun>$slambda","ChannelFlow$<get-collectToFun>$slambda$lambda","ChannelFlow$collect$slambda","ChannelFlow$collect$slambda$lambda","context","capacity","onBufferOverflow","<get-collectToFun>","<get-produceCapacity>","fuse","newContext","newCapacity","newOverflow","sum","produceImpl","scope","collect","collector","additionalToStringProps","toString","props","fuse$default","flow","create","flowCollect","collectWithContextUndispatched","$this","originalContextCollector","ChannelFlowOperator$collectWithContextUndispatched$slambda","ChannelFlowOperator$collectWithContextUndispatched$slambda$lambda","collectTo","collectContext","withUndispatchedContextCollector","<this>","emitContext","withContextUndispatched","value","countOrElement","block","UndispatchedContextCollector$emitRef$slambda","UndispatchedContextCollector$emitRef$slambda$lambda","downstream","emit","uCont","<get-context>","resumeWith","result"],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/FlowExceptions.common.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["checkOwnership","<this>","owner"],"mappings":";;uBAgBSA,CAAIC,a,EAAkCC,KAAtCF,EAAkD;A,EACnD,oBAAK,KAAL,KAAe,KAAf,E;IAAsB,MAAM,a;AACpC,C;;;;;"}
|
|
@@ -10,10 +10,10 @@ var AbortFlowExceptionClass;
|
|
|
10
10
|
function AbortFlowException() {
|
|
11
11
|
if (AbortFlowExceptionClass === VOID) {
|
|
12
12
|
class $ extends CancellationException() {
|
|
13
|
-
static
|
|
13
|
+
static d1j(owner) {
|
|
14
14
|
var $this = this.n('Flow was aborted, no more elements needed');
|
|
15
|
-
captureStack($this, $this.
|
|
16
|
-
$this.
|
|
15
|
+
captureStack($this, $this.o1i_1);
|
|
16
|
+
$this.n1i_1 = owner;
|
|
17
17
|
return $this;
|
|
18
18
|
}
|
|
19
19
|
}
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/flow/internal/FlowExceptions.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["owner"],"mappings":";;;;;;;;;;;;iBAMWA,K;2BACe,2C;;QADtB,mB;;;;;;;;;;;;;"}
|
|
@@ -10,11 +10,11 @@ var NopCollectorClass;
|
|
|
10
10
|
function NopCollector() {
|
|
11
11
|
if (NopCollectorClass === VOID) {
|
|
12
12
|
class $ {
|
|
13
|
-
*
|
|
13
|
+
*p1i(value, $completion) {
|
|
14
14
|
return Unit_instance;
|
|
15
15
|
}
|
|
16
|
-
|
|
17
|
-
return this.
|
|
16
|
+
g1f(value, $completion) {
|
|
17
|
+
return this.p1i(value, $completion);
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
initMetadataForObject($, 'NopCollector', VOID, VOID, [FlowCollector()], [1]);
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/NopCollector.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["emit","value","$completion"],"mappings":";;;;;;;;;;;;UAKqBA,CAASC,K,EAATC,WAAAF,EAAsB;A,QAEvC,oB;MAAA,C;;;;;;;;;;;;;;;;;;;;;"}
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs
CHANGED
|
@@ -15,9 +15,9 @@ import { toString30pk9tzaqopn as toString_0 } from '../../../../../kotlin-kotlin
|
|
|
15
15
|
//endregion
|
|
16
16
|
function checkContext(_this__u8e3s4, currentContext) {
|
|
17
17
|
var result = currentContext.no(0, checkContext$lambda(_this__u8e3s4));
|
|
18
|
-
if (!(result === _this__u8e3s4.
|
|
18
|
+
if (!(result === _this__u8e3s4.k1f_1)) {
|
|
19
19
|
// Inline function 'kotlin.error' call
|
|
20
|
-
var message = 'Flow invariant is violated:\n' + ('\t\tFlow was collected in ' + toString(_this__u8e3s4.
|
|
20
|
+
var message = 'Flow invariant is violated:\n' + ('\t\tFlow was collected in ' + toString(_this__u8e3s4.j1f_1) + ',\n') + ('\t\tbut emission happened in ' + toString(currentContext) + '.\n') + "\t\tPlease refer to 'flow' documentation or use 'flowOn' instead";
|
|
21
21
|
throw IllegalStateException().o(toString(message));
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -45,7 +45,7 @@ function transitiveCoroutineParent(_this__u8e3s4, collectJob) {
|
|
|
45
45
|
function checkContext$lambda($this_checkContext) {
|
|
46
46
|
return (count, element) => {
|
|
47
47
|
var key = element.b3();
|
|
48
|
-
var collectElement = $this_checkContext.
|
|
48
|
+
var collectElement = $this_checkContext.j1f_1.id(key);
|
|
49
49
|
var tmp;
|
|
50
50
|
if (!(key === Key_instance)) {
|
|
51
51
|
return !(element === collectElement) ? -2147483648 : count + 1 | 0;
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/SafeCollector.common.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["checkContext","<this>","currentContext","result","transitiveCoroutineParent","collectJob","checkContext$lambda","checkContext$lambda$lambda","key","collectElement","emissionParentJob"],"mappings":";;;;;;;;;;;;;;;qBAsBSA,CAAIC,a,EAA8BC,cAAlCF,EAAoE;A,MACzEG,SAAa,cAAe,IAAK,CAAL,EAAa,kCAAb,C;EA0DxB,iBAAU,aAAV,CAAU,KAAV,E,CAA8B;A;kBAE1B,mCACS,4BADT,YACoC,aADpC,CACoC,KADpC,IACkD,KADlD,KAES,+BAFT,YAEuC,cAFvC,IAEqD,KAFrD,IAGQ,kE;IC8D6B,gCAAoC,SAAR,OAAQ,CAApC,C;ED5D7C,C;AACJ,C;kCAEiBC,CAAIH,a,EAA+BI,UAAnCD,EAA2D;A,MAAA,qB;MAAA,yB;WAAA;A,aAAA;A,MACpE,cAAS,IAAT,C;QAAe,OAAO,I;MACtB,cAAS,YAAT,C;QAAqB,OAAO,K;MAC5B,yC;QAA4B,OAAO,K;UACzB,OAAP,U;UAAO,OAA0B,Y;MAA1B,Y;MAAA,mB;MAAA,a;IAClB,C;;EAAA,C;EAL4E,a;AAK5E,C;4BAzE6CE,C,kBAAAA,E;SAAAC,CAAE,K,EAAO,OAATA,KAAA;A,QACrCC,MAAU,OAAQ,K;QAClBC,iBAAqB,4BAAe,GAAf,C;;IACjB,4B;MACA,OAAgB,cAAY,cAAZ,IAAgC,WAAhC,GACX,QAAQ,CADG,I;;QAIpBJ,aAAiB,mG;QACjBK,oBAAyC,0BAAhB,mDAAgB,EAA0B,UAA1B,C;;IAgCrC,4BAAsB,UAAtB,E;;oBAEI,qFAES,eAFT,cAEuB,iBAFvB,IAEwC,sBAFxC,cAE6D,UAF7D,IAEuE,KAFvE,IAGQ,oK;MC+EyB,gCAAoC,SAAR,OAAQ,CAApC,C;;IDrEG,OAAxC,cAAc,IAAd,GAAoB,KAApB,GAA+B,QAAQ,CAAvC,I;EACR,C;C;;;;;"}
|
|
@@ -16,22 +16,22 @@ function SafeCollector() {
|
|
|
16
16
|
if (SafeCollectorClass === VOID) {
|
|
17
17
|
class $ {
|
|
18
18
|
constructor(collector, collectContext) {
|
|
19
|
-
this.
|
|
20
|
-
this.
|
|
19
|
+
this.i1f_1 = collector;
|
|
20
|
+
this.j1f_1 = collectContext;
|
|
21
21
|
var tmp = this;
|
|
22
|
-
tmp.
|
|
23
|
-
this.
|
|
22
|
+
tmp.k1f_1 = this.j1f_1.no(0, SafeCollector$collectContextSize$lambda);
|
|
23
|
+
this.l1f_1 = null;
|
|
24
24
|
}
|
|
25
|
-
*
|
|
25
|
+
*g1f(value, $completion) {
|
|
26
26
|
// Inline function 'kotlinx.coroutines.currentCoroutineContext' call
|
|
27
27
|
// Inline function 'kotlin.js.getCoroutineContext' call
|
|
28
28
|
var currentContext = $completion.wc();
|
|
29
29
|
ensureActive(currentContext);
|
|
30
|
-
if (!(this.
|
|
30
|
+
if (!(this.l1f_1 === currentContext)) {
|
|
31
31
|
checkContext(this, currentContext);
|
|
32
|
-
this.
|
|
32
|
+
this.l1f_1 = currentContext;
|
|
33
33
|
}
|
|
34
|
-
yield* this.
|
|
34
|
+
yield* this.i1f_1.g1f(value, $completion);
|
|
35
35
|
return Unit_instance;
|
|
36
36
|
}
|
|
37
37
|
gd() {
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/flow/internal/SafeCollector.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/js/runtime/coroutineInternalJS.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["SafeCollector$collectContextSize$lambda","collector","collectContext","emit","value","$completion","currentContext","releaseIntercepted"],"mappings":";;;;;;;;;;gDAYoEA,CAAE,K,EAAO,mBAATA,EAAA;A,EAAuB,OAAT,QAAQ,CAAC,I;AAAC,C;;;;;kBALxEC,S,EACAC,c;QADhB,sB;QACA,2B;kBAIwD,I;QAAA,YAAf,IAAe,CAAf,KAAe,IAAK,CAAL,EAAQ,uCAAR,C;QACH,iB;;UAE7BC,CAASC,K,EAATC,WAAAF,EAAmB;A;;YACvCG,iBCgBsF,gB;QDfvE,aAAf,cAAe,C;QACX,qBAAwB,cAAxB,E,CAAwC;A,UACxC,mBAAa,cAAb,C;UACA,aAAsB,c;QAC1B,C;eACA,IAAU,CAAV,KAAU,KAAK,KAAL,c;QACd,oB;MAAA,C;QAEcC,CAAAA,EAAyB;A,MACvC,C;;;;;;;;;;;"}
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs
CHANGED
|
@@ -10,10 +10,10 @@ function SendingCollector() {
|
|
|
10
10
|
if (SendingCollectorClass === VOID) {
|
|
11
11
|
class $ {
|
|
12
12
|
constructor(channel) {
|
|
13
|
-
this.
|
|
13
|
+
this.q1i_1 = channel;
|
|
14
14
|
}
|
|
15
|
-
*
|
|
16
|
-
return yield* this.
|
|
15
|
+
*g1f(value, $completion) {
|
|
16
|
+
return yield* this.q1i_1.s1c(value, $completion);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
initMetadataForClass($, 'SendingCollector', VOID, VOID, [FlowCollector()], [1]);
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/SendingCollector.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["channel","emit","value","$completion"],"mappings":";;;;;;;;;;;kBAYYA,O;QAAR,oB;;UAEiBC,CAASC,K,EAATC,WAAAF,EAA2B;A,QAAmB,cAAnB,IAAQ,CAAR,KAAQ,KAAK,KAAL,c;MAAU,C;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/internal/Concurrent.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["identitySet","expectedSize"],"mappings":";;;;;oBAWgBA,CAAoBC,YAApBD,EAAwD;A,EAAqB,oBAAb,YAAa,C;AAAD,C;;;;;"}
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/ConcurrentLinkedList.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/src/kotlin/util/Preconditions.kt","../../../../../../../../../../opt/buildAgent/work/711ef0d9c7c28b00/atomicfu/src/jsAndWasmSharedMain/kotlin/kotlinx/atomicfu/AtomicFU.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/js/builtins/Primitives.kt"],"sourcesContent":[null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-CLOSED>","id","prev","pointers","<get-isRemoved>","tryIncPointers","cur","decPointers","onSlotCleaned","close","<this>","next","<SegmentOrClosed__<init>-impl>","value","<get-value>","$this","<SegmentOrClosed__<get-isClosed>-impl>","<SegmentOrClosed__<get-segment>-impl>","<init>","<get-nextOrClosed>","<get-aliveSegmentLeft>","<get-aliveSegmentRight>","access$<get-nextOrClosed>","<get-next>","trySetNext","<get-isTail>","<get-prev>","cleanPrev","markAsClosed","remove","upd","findSegmentInternal","createNewSegment","newTail","access$<get-CLOSED>$tConcurrentLinkedListKt","<init properties ConcurrentLinkedList.kt>"],"mappings":"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"}
|
|
@@ -34,7 +34,7 @@ function handleUncaughtCoroutineException(context, exception) {
|
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
try {
|
|
37
|
-
addSuppressed(exception, DiagnosticCoroutineContextException().
|
|
37
|
+
addSuppressed(exception, DiagnosticCoroutineContextException().x1j(context));
|
|
38
38
|
} catch ($p) {
|
|
39
39
|
if ($p instanceof Error) {
|
|
40
40
|
var e = $p;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/CoroutineExceptionHandlerImpl.common.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["handleUncaughtCoroutineException","context","exception","handler","<unused var>","t","e"],"mappings":";;;;;;;;;;;;;;;yCA6BSA,CAAqCC,O,EAA2BC,SAAhEF,EAAsF;A,MAE3E,wD;SAAA,sB,EAA2B;A,QAAtCG,UAAW,sB;IACZ,IAAI;A,MACA,OAAQ,KAAgB,OAAhB,EAAyB,SAAzB,C;IACZ,C;0DAA4C;A,YAAnCC,wB;QACL,oB;MACJ,C;iCAAuB;A,cAAdC,M;UACL,8BAA8B,iBAAiB,SAAjB,EAA4B,CAA5B,CAA9B,C;QACJ,C;;;;;EACJ,C;EAEA,IAAI;A,IACU,cAAV,SAAU,4CAAkD,OAAlD,E;EACd,C;6BAAuB;A,UAAdC,M;IAGT,C;;;;EACA,8BAA8B,SAA9B,C;AACJ,C;;;;;;;;;;;;;;"}
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs
CHANGED
|
@@ -26,9 +26,9 @@ var DiagnosticCoroutineContextExceptionClass;
|
|
|
26
26
|
function DiagnosticCoroutineContextException() {
|
|
27
27
|
if (DiagnosticCoroutineContextExceptionClass === VOID) {
|
|
28
28
|
class $ extends RuntimeException() {
|
|
29
|
-
static
|
|
29
|
+
static x1j(context) {
|
|
30
30
|
var $this = this.ya(toString(context));
|
|
31
|
-
captureStack($this, $this.
|
|
31
|
+
captureStack($this, $this.w1j_1);
|
|
32
32
|
return $this;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/internal/CoroutineExceptionHandlerImpl.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/src/kotlin/collections/Sets.kt","../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/web/src/internal/CoroutineExceptionHandlerImpl.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.kt"],"sourcesContent":[null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-platformExceptionHandlers_>","<get-platformExceptionHandlers>","context","<init properties CoroutineExceptionHandlerImpl.kt>","propagateExceptionFinalResort","exception","throwAsyncJsError","message","className","stack","error"],"mappings":";;;;;;;;;;;;;;;uCAKQA,CAAAA,EAAA;A;EAAA,iC;AAA6B,C;;sCAGjCC,CAAAA,EAAQ;A;EAA0B,OAA1B,gC;AAAyB,C;;;;;iBAMwCC,O;4BAChD,SAAR,OAAQ,C;;;;;;;;;;;kEAf7BC,CAAAA,E;;;;iCCsEsD,oB;;C;sCCvCtCC,CAAkCC,SAAlCD,EAA0D;A;EACtE,kBAD2E,SAC3E,CAAkB,OAAlB,EAAuC,wBADoC,SACpC,MAAvC,EAAmD,mBADwB,SACxB,CAAnD,C;EACH,oB;AAAD,C;0BAxBSE,CAAsBC,O,EAAkBC,S,EAAoBC,KAA5DH,EAA2E;A,ECQrE,IAAII,QAAQ,IAAI,KAAJ,E;EACZ,KAAc,CAAR,OAAQ,GAAE,O;EAChB,KAAW,CAAL,IAAK,GAAE,S;EACb,KAAY,CAAN,KAAM,GAAE,K;EACd,IAAI,OAAO,UAAP,CAAkB,WAAY,KAAI,UAAtC,C,CAAkD;A,IAExB;IAAtB,UAAsB,CAAX,WAAW,CAAC,KAAD,C;SACnB;A,IAEO;IAAV,UAAU,UAAU,CAAA,EDfjC;A,MCesC,MAAM,K;IDf5C,CCeuB,EAA8B,CAA9B,C;;ADG7B,C;;;;;"}
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs
CHANGED
|
@@ -137,7 +137,7 @@ function DispatchedContinuation() {
|
|
|
137
137
|
h12() {
|
|
138
138
|
return !(this.d12_1.kotlinx$atomicfu$value == null);
|
|
139
139
|
}
|
|
140
|
-
|
|
140
|
+
y1j() {
|
|
141
141
|
// Inline function 'kotlinx.atomicfu.loop' call
|
|
142
142
|
var this_0 = this.d12_1;
|
|
143
143
|
while (true) {
|
|
@@ -146,7 +146,7 @@ function DispatchedContinuation() {
|
|
|
146
146
|
}
|
|
147
147
|
}
|
|
148
148
|
q14() {
|
|
149
|
-
this.
|
|
149
|
+
this.y1j();
|
|
150
150
|
var tmp0_safe_receiver = _get_reusableCancellableContinuation__9qex09(this);
|
|
151
151
|
if (tmp0_safe_receiver == null)
|
|
152
152
|
null;
|
|
@@ -296,7 +296,7 @@ function safeDispatch(_this__u8e3s4, context, runnable) {
|
|
|
296
296
|
} catch ($p) {
|
|
297
297
|
if ($p instanceof Error) {
|
|
298
298
|
var e = $p;
|
|
299
|
-
throw DispatchException().
|
|
299
|
+
throw DispatchException().z1j(e, _this__u8e3s4, context);
|
|
300
300
|
} else {
|
|
301
301
|
throw $p;
|
|
302
302
|
}
|
|
@@ -309,7 +309,7 @@ function safeIsDispatchNeeded(_this__u8e3s4, context) {
|
|
|
309
309
|
} catch ($p) {
|
|
310
310
|
if ($p instanceof Error) {
|
|
311
311
|
var e = $p;
|
|
312
|
-
throw DispatchException().
|
|
312
|
+
throw DispatchException().z1j(e, _this__u8e3s4, context);
|
|
313
313
|
} else {
|
|
314
314
|
throw $p;
|
|
315
315
|
}
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/DispatchedContinuation.kt","../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/DispatchedTask.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/src/kotlin/util/Result.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/src/kotlin/coroutines/Continuation.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","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/js/src/kotlin/collections/InternalStringMap.kt"],"sourcesContent":[null,null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-UNDEFINED>","<get-REUSABLE_CLAIMED>","resumeCancellableWithInternal","<this>","result","state","eventLoop","job","cause","e","<get-reusableCancellableContinuation>","$this","dispatcher","continuation","isReusable","awaitReusability","release","claimReusableCancellableContinuation","tryReleaseClaimedContinuation","message","postponeCancellation","takeState","<get-delegate>","resumeWith","toString","<get-context>","safeDispatch","context","runnable","safeIsDispatchNeeded","<init properties DispatchedContinuation.kt>"],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/InlineList.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["<InlineList__<init>-impl>","holder","<get-holder>","$this","InlineList__plus-impl","element","list","access$<get-holder>"],"mappings":";;;;;;;;wCAakCA,CAASC,MAATD,E;EAAA,2BAA4B,IAA5B,S;EAAA,a;C;4BAASE,CAAAC,KAAAD,EAAA;A,EAAA,Y;AAAsB,C;qCACpDE,CAAA,K,EAASC,OAATD,E;;MAEQ,yC;;EACT,yB;UAAQ,wC;;IACR,wC;kBACK,0B;MAAwB,CAAxB,kDAAwB,a;YACzB,gCAAW,0BAAX,C;;UAGAE,sBAAwB,CAAxBA,C;MACA,IAAK,IAAI,0BAAJ,C;MACL,IAAK,Y;YACL,gCAAW,IAAX,C;;;EAVR,U;C;mCAJRC,CAC2CJ,KAD3CI,EAAA;A,EAAA,iC;AAAA,C;;;;;"}
|
|
@@ -33,23 +33,23 @@ function checkParallelism(_this__u8e3s4) {
|
|
|
33
33
|
function tryAllocateWorker($this) {
|
|
34
34
|
// Inline function 'kotlinx.coroutines.internal.synchronized' call
|
|
35
35
|
// Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
|
|
36
|
-
$this.
|
|
37
|
-
if ($this.
|
|
36
|
+
$this.h1k_1;
|
|
37
|
+
if ($this.f1k_1.kotlinx$atomicfu$value >= $this.d1k_1)
|
|
38
38
|
return false;
|
|
39
|
-
$this.
|
|
39
|
+
$this.f1k_1.atomicfu$incrementAndGet();
|
|
40
40
|
return true;
|
|
41
41
|
}
|
|
42
42
|
function obtainTaskOrDeallocateWorker($this) {
|
|
43
43
|
while (true) {
|
|
44
|
-
var nextTask = $this.
|
|
44
|
+
var nextTask = $this.g1k_1.bl();
|
|
45
45
|
if (nextTask == null) {
|
|
46
46
|
// Inline function 'kotlinx.coroutines.internal.synchronized' call
|
|
47
47
|
// Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
|
|
48
|
-
$this.
|
|
49
|
-
$this.
|
|
50
|
-
if ($this.
|
|
48
|
+
$this.h1k_1;
|
|
49
|
+
$this.f1k_1.atomicfu$decrementAndGet();
|
|
50
|
+
if ($this.g1k_1.q2() === 0)
|
|
51
51
|
return null;
|
|
52
|
-
$this.
|
|
52
|
+
$this.f1k_1.atomicfu$incrementAndGet();
|
|
53
53
|
} else
|
|
54
54
|
return nextTask;
|
|
55
55
|
}
|
|
@@ -59,15 +59,15 @@ function Worker() {
|
|
|
59
59
|
if (WorkerClass === VOID) {
|
|
60
60
|
class $ {
|
|
61
61
|
constructor($outer, currentTask) {
|
|
62
|
-
this.
|
|
63
|
-
this.
|
|
62
|
+
this.k1k_1 = $outer;
|
|
63
|
+
this.j1k_1 = currentTask;
|
|
64
64
|
}
|
|
65
65
|
y13() {
|
|
66
66
|
try {
|
|
67
67
|
var fairnessCounter = 0;
|
|
68
68
|
while (true) {
|
|
69
69
|
try {
|
|
70
|
-
this.
|
|
70
|
+
this.j1k_1.y13();
|
|
71
71
|
} catch ($p) {
|
|
72
72
|
if ($p instanceof Error) {
|
|
73
73
|
var e = $p;
|
|
@@ -77,23 +77,23 @@ function Worker() {
|
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
var tmp = this;
|
|
80
|
-
var tmp0_elvis_lhs = obtainTaskOrDeallocateWorker(this.
|
|
80
|
+
var tmp0_elvis_lhs = obtainTaskOrDeallocateWorker(this.k1k_1);
|
|
81
81
|
var tmp_0;
|
|
82
82
|
if (tmp0_elvis_lhs == null) {
|
|
83
83
|
return Unit_instance;
|
|
84
84
|
} else {
|
|
85
85
|
tmp_0 = tmp0_elvis_lhs;
|
|
86
86
|
}
|
|
87
|
-
tmp.
|
|
87
|
+
tmp.j1k_1 = tmp_0;
|
|
88
88
|
var tmp_1;
|
|
89
89
|
fairnessCounter = fairnessCounter + 1 | 0;
|
|
90
90
|
if (fairnessCounter >= 16) {
|
|
91
|
-
tmp_1 = safeIsDispatchNeeded(this.
|
|
91
|
+
tmp_1 = safeIsDispatchNeeded(this.k1k_1.c1k_1, this.k1k_1);
|
|
92
92
|
} else {
|
|
93
93
|
tmp_1 = false;
|
|
94
94
|
}
|
|
95
95
|
if (tmp_1) {
|
|
96
|
-
safeDispatch(this.
|
|
96
|
+
safeDispatch(this.k1k_1.c1k_1, this.k1k_1, this);
|
|
97
97
|
return Unit_instance;
|
|
98
98
|
}
|
|
99
99
|
}
|
|
@@ -102,8 +102,8 @@ function Worker() {
|
|
|
102
102
|
var e_0 = $p;
|
|
103
103
|
// Inline function 'kotlinx.coroutines.internal.synchronized' call
|
|
104
104
|
// Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
|
|
105
|
-
this.
|
|
106
|
-
this.
|
|
105
|
+
this.k1k_1.h1k_1;
|
|
106
|
+
this.k1k_1.f1k_1.atomicfu$decrementAndGet();
|
|
107
107
|
throw e_0;
|
|
108
108
|
} else {
|
|
109
109
|
throw $p;
|
|
@@ -124,25 +124,25 @@ function LimitedDispatcher() {
|
|
|
124
124
|
super();
|
|
125
125
|
var tmp = this;
|
|
126
126
|
var tmp0_elvis_lhs = isInterface(dispatcher, Delay()) ? dispatcher : null;
|
|
127
|
-
tmp.
|
|
128
|
-
this.
|
|
129
|
-
this.
|
|
130
|
-
this.
|
|
131
|
-
this.
|
|
132
|
-
this.
|
|
133
|
-
this.
|
|
127
|
+
tmp.b1k_1 = tmp0_elvis_lhs == null ? get_DefaultDelay() : tmp0_elvis_lhs;
|
|
128
|
+
this.c1k_1 = dispatcher;
|
|
129
|
+
this.d1k_1 = parallelism;
|
|
130
|
+
this.e1k_1 = name;
|
|
131
|
+
this.f1k_1 = atomic$int$1(0);
|
|
132
|
+
this.g1k_1 = new (LockFreeTaskQueue())(false);
|
|
133
|
+
this.h1k_1 = new (SynchronizedObject())();
|
|
134
134
|
}
|
|
135
135
|
n14(parallelism, name) {
|
|
136
136
|
checkParallelism(parallelism);
|
|
137
|
-
if (parallelism >= this.
|
|
137
|
+
if (parallelism >= this.d1k_1)
|
|
138
138
|
return namedOrThis(this, name);
|
|
139
139
|
return super.n14(parallelism, name);
|
|
140
140
|
}
|
|
141
141
|
p14(context, block) {
|
|
142
142
|
$l$block_1: {
|
|
143
143
|
// Inline function 'kotlinx.coroutines.internal.LimitedDispatcher.dispatchInternal' call
|
|
144
|
-
this.
|
|
145
|
-
if (this.
|
|
144
|
+
this.g1k_1.l1k(block);
|
|
145
|
+
if (this.f1k_1.kotlinx$atomicfu$value >= this.d1k_1) {
|
|
146
146
|
break $l$block_1;
|
|
147
147
|
}
|
|
148
148
|
if (!tryAllocateWorker(this)) {
|
|
@@ -158,11 +158,11 @@ function LimitedDispatcher() {
|
|
|
158
158
|
var task = tmp;
|
|
159
159
|
try {
|
|
160
160
|
var worker = new (Worker())(this, task);
|
|
161
|
-
safeDispatch(this.
|
|
161
|
+
safeDispatch(this.c1k_1, this, worker);
|
|
162
162
|
} catch ($p) {
|
|
163
163
|
if ($p instanceof Error) {
|
|
164
164
|
var e = $p;
|
|
165
|
-
this.
|
|
165
|
+
this.f1k_1.atomicfu$decrementAndGet();
|
|
166
166
|
throw e;
|
|
167
167
|
} else {
|
|
168
168
|
throw $p;
|
|
@@ -171,14 +171,14 @@ function LimitedDispatcher() {
|
|
|
171
171
|
}
|
|
172
172
|
}
|
|
173
173
|
toString() {
|
|
174
|
-
var tmp0_elvis_lhs = this.
|
|
175
|
-
return tmp0_elvis_lhs == null ? this.
|
|
174
|
+
var tmp0_elvis_lhs = this.e1k_1;
|
|
175
|
+
return tmp0_elvis_lhs == null ? this.c1k_1.toString() + '.limitedParallelism(' + this.d1k_1 + ')' : tmp0_elvis_lhs;
|
|
176
176
|
}
|
|
177
177
|
y14(timeMillis, continuation) {
|
|
178
|
-
this.
|
|
178
|
+
this.b1k_1.y14(timeMillis, continuation);
|
|
179
179
|
}
|
|
180
180
|
z14(timeMillis, block, context) {
|
|
181
|
-
return this.
|
|
181
|
+
return this.b1k_1.z14(timeMillis, block, context);
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
184
|
initMetadataForClass($, 'LimitedDispatcher', VOID, VOID, [Delay()], [1]);
|
package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/internal/LimitedDispatcher.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":["checkParallelism","<this>","message","tryAllocateWorker","$this","obtainTaskOrDeallocateWorker","nextTask","currentTask","run","fairnessCounter","e","dispatcher","parallelism","name","limitedParallelism","dispatch","context","block","task","toString","scheduleResumeAfterDelay","timeMillis","continuation","invokeOnTimeout","namedOrThis"],"mappings":"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"}
|
|
@@ -20,7 +20,7 @@ function LockFreeLinkedListNode() {
|
|
|
20
20
|
var prev = this.g10_1;
|
|
21
21
|
var tmp;
|
|
22
22
|
if (prev instanceof ListClosed()) {
|
|
23
|
-
tmp = ((prev.
|
|
23
|
+
tmp = ((prev.p1n_1 & permissionsBitmask) === 0 && prev.i10(node, permissionsBitmask));
|
|
24
24
|
} else {
|
|
25
25
|
node.f10_1 = this;
|
|
26
26
|
node.g10_1 = prev;
|
|
@@ -70,7 +70,7 @@ function ListClosed() {
|
|
|
70
70
|
class $ extends LockFreeLinkedListNode() {
|
|
71
71
|
constructor(forbiddenElementsBitmask) {
|
|
72
72
|
super();
|
|
73
|
-
this.
|
|
73
|
+
this.p1n_1 = forbiddenElementsBitmask;
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
initMetadataForClass($, 'ListClosed');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/jsAndWasmShared/src/internal/LinkedList.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["addLast","node","permissionsBitmask","prev","close","forbiddenElementsBit","remove","next","addOneIfEmpty","forbiddenElementsBitmask"],"mappings":";;;;;;;;;;;;;;QAQuC,iB;QACA,iB;QACY,kB;;SAMjCA,CAAYC,I,EAAYC,kBAAxBF,EAA4D;A,YAAMG,OAAW,IAAXA,CAAgB,K;;QAC5F,iC;iBACI,MAAK,KAAL,GAAkC,kBAAlC,MAAwD,C,IAAK,IAAK,KAAQ,IAAR,EAAc,kBAAd,C;;UAElE,IAAK,SAAQ,I;UACb,IAAK,SAAQ,I;UACb,IAAK,SAAQ,I;UACb,IAAK,SAAQ,I;gBACb,I;;QAEP,U;MAAD,C;SAEcC,CAAUC,oBAAVD,EAAqC;A,QAC/C,4BAAmB,oBAAnB,GAA0C,oBAA1C,C;MACJ,C;SAQmBE,CAAAA,EAAsB;A,QACjC,e;UAAU,OAAO,K;YACrBH,OAAW,IAAXA,CAAgB,K;YAChBI,OAAW,IAAXA,CAAgB,K;QAChB,IAAK,SAAQ,I;QACb,IAAK,SAAQ,I;QACb,aAAW,I;QACX,OAAO,I;MACX,C;SAEcC,CAAkBP,IAAlBO,EAAuC;A,QAC7C,qBAAU,IAAV,E;UAAgB,OAAO,K;QAC3B,SAAQ,IAAR,EAAkB,WAAlB,C;QACA,OAAO,I;MACX,C;;;;;;;;;;;;;;;;;;;;kBAoBqBC,wB;;QAAA,qC;;;;;;;;;;;;"}
|