@continuous-excellence/coupling-cli 1.1.441 → 1.1.442
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 +38 -38
- 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 +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/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 +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +24 -24
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +37 -37
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +4 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +35 -35
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +26 -26
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +51 -51
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +12 -12
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +18 -18
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs +82 -82
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +50 -50
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +30 -30
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +5 -5
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +10 -10
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +54 -54
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +57 -57
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +34 -34
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +17 -17
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +28 -28
- 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 +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSyntax.mjs +5 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSyntax.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +32 -32
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +77 -77
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +102 -102
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +31 -31
- 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 +28 -28
- 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 +46 -46
- 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/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 +113 -113
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +63 -63
- 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 +44 -44
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/DeferredFragmentIdentifier.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executable.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs +21 -21
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +139 -139
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +57 -57
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +28 -28
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +84 -84
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +275 -275
- 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 +12 -12
- 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 +113 -113
- 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 +250 -250
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs.map +1 -1
- 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 +49 -49
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/dispatchers.js.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpEngine.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpEngine.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 +146 -146
- 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 +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +33 -33
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +29 -29
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +183 -183
- 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 +23 -23
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.js.mjs +1 -1
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +43 -44
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs.map +1 -1
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +70 -70
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +33 -33
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +110 -110
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +93 -93
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +134 -134
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +13 -13
- 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 +209 -209
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +230 -230
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +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 +25 -25
- 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 +121 -121
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +64 -64
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
- package/kotlin/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +19 -19
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +9 -9
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Result.mjs +5 -5
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +13 -16
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByte.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UInt.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULong.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShort.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/Base64.mjs +347 -0
- package/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/Base64.mjs.map +1 -0
- package/kotlin/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +37 -37
- package/kotlin/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +22 -22
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +17 -17
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +22 -22
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +10 -10
- package/kotlin/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +60 -60
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +22 -22
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +21 -21
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +65 -65
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/TimeSource.mjs +11 -11
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/measureTime.mjs +7 -7
- package/kotlin/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +24 -24
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +10 -10
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +22 -22
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +5 -5
- package/kotlin/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +8 -8
- package/kotlin/kotlinx-browser/org/w3c/w3cSupport.mjs +8 -0
- package/kotlin/kotlinx-browser/org/w3c/w3cSupport.mjs.map +1 -0
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +25 -25
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Await.mjs +40 -40
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Await.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +66 -66
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +7 -7
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +166 -166
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +10 -10
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +11 -11
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +42 -42
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +27 -27
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +6 -6
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +92 -92
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +313 -313
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +459 -459
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +75 -74
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +23 -23
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +16 -16
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +13 -13
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +20 -20
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collection.mjs +10 -10
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +14 -14
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs +28 -28
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Limit.mjs +16 -16
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +9 -9
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +19 -19
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +134 -134
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs +19 -19
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +32 -32
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +72 -72
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +8 -8
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +46 -46
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +71 -71
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs +39 -39
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +23 -23
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/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/NamedDispatcher.mjs +12 -12
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +11 -11
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +9 -9
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +15 -15
- package/kotlin/kotlinx-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/ByteString.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +2 -2
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +11 -11
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +157 -157
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +10 -10
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +20 -20
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +50 -50
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +133 -133
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +6 -6
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +2 -2
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +12 -12
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +60 -64
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +12 -12
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -1
- 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 +33 -33
- 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 +96 -96
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +60 -60
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +69 -69
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +38 -38
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +56 -56
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +231 -231
- 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 +18 -18
- 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 +43 -43
- 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 +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +70 -70
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +444 -444
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +114 -114
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +221 -221
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +90 -90
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +30 -30
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +47 -47
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +58 -58
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementBuilders.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +152 -152
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +178 -178
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +71 -71
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +15 -15
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +21 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +39 -39
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +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 +62 -62
- 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 +176 -176
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +143 -143
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +212 -212
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +186 -186
- 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 +71 -72
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/{DefaultIgnoredTypesJs.mjs → DefaultIgnoredTypes.web.mjs} +6 -6
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypes.web.mjs.map +1 -0
- 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 +76 -76
- package/kotlin/ktor-ktor-client-core/io/ktor/client/{HttpClientJs.mjs → HttpClient.web.mjs} +8 -8
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClient.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +47 -44
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +45 -45
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +49 -50
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +51 -51
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +39 -39
- package/kotlin/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +49 -49
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +23 -23
- 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 +20 -21
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -1
- 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/Js.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +39 -38
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +16 -17
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.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 +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +36 -36
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs +58 -59
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +33 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +69 -70
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/{DefaultTransformJs.mjs → DefaultTransform.web.mjs} +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +79 -79
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -1
- 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 +49 -50
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +34 -35
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +29 -29
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +110 -111
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +62 -56
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +82 -82
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +26 -26
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +34 -34
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserver.mjs +57 -57
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/{ResponseObserverContextJs.mjs → ResponseObserverContext.web.mjs} +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserverContext.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +36 -36
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +127 -86
- 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 +10 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSocketContent.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +90 -83
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +88 -47
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs.map +1 -1
- 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 +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +59 -59
- 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 +26 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/FormDataContent.mjs.map +1 -1
- 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 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +19 -19
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +5 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/HttpClientCallLogger.mjs +28 -28
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/{KtorMDCContext.jsAndWasmShared.mjs → KtorMDCContext.web.mjs} +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/KtorMDCContext.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs +248 -0
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs.map +1 -0
- 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 +16 -16
- 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/{LoggerJs.mjs → Logger.web.mjs} +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logger.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs +448 -527
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +14 -14
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/ObservingUtils.mjs +13 -13
- package/kotlin/ktor-ktor-events/io/ktor/events/Events.mjs +6 -6
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +12 -12
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +130 -97
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -1
- 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/Headers.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +32 -32
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +115 -115
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +5 -6
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +15 -13
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +16 -16
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +66 -66
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpUrlEncoded.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpUrlEncoded.mjs.map +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 +60 -60
- package/kotlin/ktor-ktor-http/io/ktor/http/{URLBuilderJs.mjs → URLBuilder.web.mjs} +2 -2
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.web.mjs.map +1 -0
- 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 +26 -26
- package/kotlin/ktor-ktor-http/io/ktor/http/Url.mjs +77 -77
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +31 -31
- package/kotlin/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +11 -11
- package/kotlin/ktor-ktor-http/io/ktor/http/content/Multipart.mjs +23 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/content/Multipart.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +9 -9
- package/kotlin/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +14 -14
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +5 -5
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +87 -87
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +39 -42
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +49 -49
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +10 -10
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +70 -70
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +3 -3
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/{CharArrayPoolJs.mjs → CharArrayPool.web.mjs} +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.web.mjs.map +1 -0
- 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 +127 -127
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/{ByteChannel.jsAndWasmShared.mjs → ByteChannel.web.mjs} +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannel.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +53 -53
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +13 -13
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +273 -188
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +34 -34
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +11 -11
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +23 -23
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +12 -12
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/{IODispatcher.jsAndWasmShared.mjs → IODispatcher.web.mjs} +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/IODispatcher.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEnding.mjs +43 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEnding.mjs.map +1 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +15 -17
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -1
- 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 +43 -41
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -1
- 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/ISO88591.mjs.map +1 -1
- 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/charsets/TextDecoderFallback.js.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +4 -4
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +10 -10
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +28 -28
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +5 -5
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +36 -37
- 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 +2 -2
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/{ExtensionsJs.mjs → Extensions.web.mjs} +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +79 -79
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +8 -8
- package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.mjs +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/{AttributesJs.mjs → Attributes.web.mjs} +17 -17
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/ByteChannels.mjs +55 -55
- package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +31 -31
- package/kotlin/ktor-ktor-utils/io/ktor/util/{CollectionsJs.mjs → Collections.web.mjs} +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/Collections.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/{ContentEncodersJs.mjs → ContentEncoders.web.mjs} +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/ContentEncoders.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/Crypto.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/{CryptoJs.mjs → Crypto.web.mjs} +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/Crypto.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +34 -34
- package/kotlin/ktor-ktor-utils/io/ktor/util/Encoders.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +17 -17
- package/kotlin/ktor-ktor-utils/io/ktor/util/{PlatformUtilsJs.mjs → PlatformUtils.web.mjs} +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/StringValues.mjs +89 -89
- package/kotlin/ktor-ktor-utils/io/ktor/util/Text.mjs +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/Date.mjs +106 -106
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/{ExceptionUtilsJs.mjs → ExceptionUtils.web.mjs} +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtils.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +8 -8
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/{KtorSimpleLoggerJs.mjs → KtorSimpleLogger.web.mjs} +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLogger.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/{LoggerJs.mjs → Logger.web.mjs} +2 -2
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/Logger.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +29 -29
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +25 -25
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +54 -54
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -1
- 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/StackTraceRecover.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/{StackTraceRecoverJs.mjs → StackTraceRecover.web.mjs} +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +50 -50
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +9 -9
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/{TypeInfoJs.mjs → TypeInfo.web.mjs} +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/TypeInfo.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +19 -19
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs +156 -138
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/{FrameJs.mjs → Frame.web.mjs} +42 -42
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +7 -7
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +44 -44
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/{UtilsJs.mjs → Utils.web.mjs} +6 -2
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Utils.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +286 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs.map +1 -0
- 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 +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +63 -63
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +79 -79
- 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 +234 -234
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +23 -23
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +153 -153
- 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 +18 -18
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +61 -61
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +412 -412
- package/kotlin/okio-parent-okio/okio/ByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +15 -15
- package/kotlin/okio-parent-okio/okio/Okio.mjs +2 -2
- package/kotlin/okio-parent-okio/okio/Options.mjs +23 -23
- package/kotlin/okio-parent-okio/okio/RealBufferedSink.mjs +37 -37
- package/kotlin/okio-parent-okio/okio/RealBufferedSource.mjs +70 -70
- package/kotlin/okio-parent-okio/okio/Segment.mjs +70 -70
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +5 -5
- package/kotlin/okio-parent-okio/okio/SegmentedByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/Util.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/-Utf8.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Buffer.mjs +24 -24
- package/kotlin/okio-parent-okio/okio/internal/ByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/SegmentedByteString.mjs +1 -1
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +7 -7
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +148 -148
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
- 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/platform.mjs +1 -1
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +1 -1
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserverContextJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/KtorMDCContext.jsAndWasmShared.mjs.map +0 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggerJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs.map +0 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs.map +0 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/Base64.mjs +0 -111
- package/kotlin/ktor-ktor-utils/io/ktor/util/Base64.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/ContentEncodersJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/CryptoJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/UtilsJs.mjs.map +0 -1
|
@@ -42,107 +42,107 @@ function get_HeadersDataPool() {
|
|
|
42
42
|
}
|
|
43
43
|
var HeadersDataPool;
|
|
44
44
|
function thresholdReached($this) {
|
|
45
|
-
return $this.
|
|
45
|
+
return $this.n34_1 >= $this.o34_1 * 0.75;
|
|
46
46
|
}
|
|
47
47
|
function resize($this) {
|
|
48
|
-
var prevSize = $this.
|
|
49
|
-
var prevData = $this.
|
|
50
|
-
$this.
|
|
51
|
-
$this.
|
|
48
|
+
var prevSize = $this.n34_1;
|
|
49
|
+
var prevData = $this.p34_1;
|
|
50
|
+
$this.n34_1 = 0;
|
|
51
|
+
$this.o34_1 = imul($this.o34_1, 2) | 128;
|
|
52
52
|
var tmp = $this;
|
|
53
53
|
// Inline function 'kotlin.apply' call
|
|
54
|
-
var this_0 = get_HeadersDataPool().
|
|
55
|
-
this_0.
|
|
56
|
-
tmp.
|
|
57
|
-
var _iterator__ex2g4s = prevData.
|
|
54
|
+
var this_0 = get_HeadersDataPool().x1w();
|
|
55
|
+
this_0.s34(imul(prevData.r34(), 2) | 1);
|
|
56
|
+
tmp.p34_1 = this_0;
|
|
57
|
+
var _iterator__ex2g4s = prevData.t34().q1();
|
|
58
58
|
while (_iterator__ex2g4s.r1()) {
|
|
59
59
|
var headerOffset = _iterator__ex2g4s.s1();
|
|
60
|
-
$this.
|
|
60
|
+
$this.v34(prevData.u34(headerOffset + 1 | 0), prevData.u34(headerOffset + 2 | 0), prevData.u34(headerOffset + 3 | 0), prevData.u34(headerOffset + 4 | 0));
|
|
61
61
|
}
|
|
62
|
-
get_HeadersDataPool().
|
|
62
|
+
get_HeadersDataPool().y1w(prevData);
|
|
63
63
|
// Inline function 'kotlin.require' call
|
|
64
64
|
// Inline function 'kotlin.require' call
|
|
65
|
-
if (!(prevSize === $this.
|
|
65
|
+
if (!(prevSize === $this.n34_1)) {
|
|
66
66
|
var message = 'Failed requirement.';
|
|
67
67
|
throw IllegalArgumentException().r2(toString(message));
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
function headerHasName($this, name, headerOffset) {
|
|
71
|
-
var nameStartIndex = $this.
|
|
72
|
-
var nameEndIndex = $this.
|
|
73
|
-
return equalsLowerCase($this.
|
|
71
|
+
var nameStartIndex = $this.p34_1.u34(headerOffset + 1 | 0);
|
|
72
|
+
var nameEndIndex = $this.p34_1.u34(headerOffset + 2 | 0);
|
|
73
|
+
return equalsLowerCase($this.m34_1, nameStartIndex, nameEndIndex, name);
|
|
74
74
|
}
|
|
75
75
|
var HttpHeadersMapClass;
|
|
76
76
|
function HttpHeadersMap() {
|
|
77
77
|
if (HttpHeadersMapClass === VOID) {
|
|
78
78
|
class $ {
|
|
79
79
|
constructor(builder) {
|
|
80
|
-
this.
|
|
81
|
-
this.
|
|
82
|
-
this.
|
|
83
|
-
this.
|
|
80
|
+
this.m34_1 = builder;
|
|
81
|
+
this.n34_1 = 0;
|
|
82
|
+
this.o34_1 = 0;
|
|
83
|
+
this.p34_1 = get_HeadersDataPool().x1w();
|
|
84
84
|
}
|
|
85
85
|
gi(name) {
|
|
86
|
-
if (this.
|
|
86
|
+
if (this.n34_1 === 0)
|
|
87
87
|
return null;
|
|
88
88
|
// Inline function 'kotlin.math.absoluteValue' call
|
|
89
89
|
var this_0 = hashCodeLowerCase(name);
|
|
90
90
|
var hash = abs(this_0);
|
|
91
|
-
var headerIndex = hash % this.
|
|
92
|
-
while (!(this.
|
|
91
|
+
var headerIndex = hash % this.o34_1 | 0;
|
|
92
|
+
while (!(this.p34_1.u34(imul(headerIndex, 6) + 0 | 0) === -1)) {
|
|
93
93
|
if (headerHasName(this, name, imul(headerIndex, 6))) {
|
|
94
|
-
return this.
|
|
94
|
+
return this.w34(imul(headerIndex, 6));
|
|
95
95
|
}
|
|
96
|
-
headerIndex = (headerIndex + 1 | 0) % this.
|
|
96
|
+
headerIndex = (headerIndex + 1 | 0) % this.o34_1 | 0;
|
|
97
97
|
}
|
|
98
98
|
return null;
|
|
99
99
|
}
|
|
100
|
-
|
|
101
|
-
return this.
|
|
100
|
+
x34() {
|
|
101
|
+
return this.p34_1.t34();
|
|
102
102
|
}
|
|
103
|
-
|
|
103
|
+
v34(nameStartIndex, nameEndIndex, valueStartIndex, valueEndIndex) {
|
|
104
104
|
if (thresholdReached(this)) {
|
|
105
105
|
resize(this);
|
|
106
106
|
}
|
|
107
107
|
// Inline function 'kotlin.math.absoluteValue' call
|
|
108
|
-
var this_0 = hashCodeLowerCase(this.
|
|
108
|
+
var this_0 = hashCodeLowerCase(this.m34_1, nameStartIndex, nameEndIndex);
|
|
109
109
|
var hash = abs(this_0);
|
|
110
|
-
var name = this.
|
|
111
|
-
var headerIndex = hash % this.
|
|
110
|
+
var name = this.m34_1.c(nameStartIndex, nameEndIndex);
|
|
111
|
+
var headerIndex = hash % this.o34_1 | 0;
|
|
112
112
|
var sameNameHeaderIndex = -1;
|
|
113
|
-
while (!(this.
|
|
113
|
+
while (!(this.p34_1.u34(imul(headerIndex, 6) + 0 | 0) === -1)) {
|
|
114
114
|
if (headerHasName(this, name, imul(headerIndex, 6))) {
|
|
115
115
|
sameNameHeaderIndex = headerIndex;
|
|
116
116
|
}
|
|
117
|
-
headerIndex = (headerIndex + 1 | 0) % this.
|
|
117
|
+
headerIndex = (headerIndex + 1 | 0) % this.o34_1 | 0;
|
|
118
118
|
}
|
|
119
119
|
var headerOffset = imul(headerIndex, 6);
|
|
120
|
-
this.
|
|
121
|
-
this.
|
|
122
|
-
this.
|
|
123
|
-
this.
|
|
124
|
-
this.
|
|
125
|
-
this.
|
|
120
|
+
this.p34_1.f35(headerOffset + 0 | 0, hash);
|
|
121
|
+
this.p34_1.f35(headerOffset + 1 | 0, nameStartIndex);
|
|
122
|
+
this.p34_1.f35(headerOffset + 2 | 0, nameEndIndex);
|
|
123
|
+
this.p34_1.f35(headerOffset + 3 | 0, valueStartIndex);
|
|
124
|
+
this.p34_1.f35(headerOffset + 4 | 0, valueEndIndex);
|
|
125
|
+
this.p34_1.f35(headerOffset + 5 | 0, -1);
|
|
126
126
|
if (!(sameNameHeaderIndex === -1)) {
|
|
127
|
-
this.
|
|
127
|
+
this.p34_1.f35(imul(sameNameHeaderIndex, 6) + 5 | 0, headerIndex);
|
|
128
128
|
}
|
|
129
|
-
this.
|
|
129
|
+
this.n34_1 = this.n34_1 + 1 | 0;
|
|
130
130
|
}
|
|
131
|
-
|
|
132
|
-
var nameStartIndex = this.
|
|
133
|
-
var nameEndIndex = this.
|
|
134
|
-
return this.
|
|
131
|
+
g35(headerOffset) {
|
|
132
|
+
var nameStartIndex = this.p34_1.u34(headerOffset + 1 | 0);
|
|
133
|
+
var nameEndIndex = this.p34_1.u34(headerOffset + 2 | 0);
|
|
134
|
+
return this.m34_1.c(nameStartIndex, nameEndIndex);
|
|
135
135
|
}
|
|
136
|
-
|
|
137
|
-
var valueStartIndex = this.
|
|
138
|
-
var valueEndIndex = this.
|
|
139
|
-
return this.
|
|
136
|
+
w34(headerOffset) {
|
|
137
|
+
var valueStartIndex = this.p34_1.u34(headerOffset + 3 | 0);
|
|
138
|
+
var valueEndIndex = this.p34_1.u34(headerOffset + 4 | 0);
|
|
139
|
+
return this.m34_1.c(valueStartIndex, valueEndIndex);
|
|
140
140
|
}
|
|
141
|
-
|
|
142
|
-
this.
|
|
143
|
-
this.
|
|
144
|
-
get_HeadersDataPool().
|
|
145
|
-
this.
|
|
141
|
+
h35() {
|
|
142
|
+
this.n34_1 = 0;
|
|
143
|
+
this.o34_1 = 0;
|
|
144
|
+
get_HeadersDataPool().y1w(this.p34_1);
|
|
145
|
+
this.p34_1 = get_HeadersDataPool().x1w();
|
|
146
146
|
}
|
|
147
147
|
toString() {
|
|
148
148
|
// Inline function 'kotlin.text.buildString' call
|
|
@@ -159,12 +159,12 @@ function HttpHeadersMap() {
|
|
|
159
159
|
}
|
|
160
160
|
function *_generator_invoke__zhh2q8($this, $this$sequence, $completion) {
|
|
161
161
|
var joinedIndex = 0;
|
|
162
|
-
var _iterator__ex2g4s = $this.
|
|
162
|
+
var _iterator__ex2g4s = $this.i35_1.q34_1.q1();
|
|
163
163
|
while (_iterator__ex2g4s.r1()) {
|
|
164
164
|
var arr = _iterator__ex2g4s.s1();
|
|
165
165
|
var localIndex = 0;
|
|
166
166
|
while (localIndex < arr.length) {
|
|
167
|
-
if (!($this.
|
|
167
|
+
if (!($this.i35_1.u34(joinedIndex + 0 | 0) === -1)) {
|
|
168
168
|
var tmp = $this$sequence.um(joinedIndex, $completion);
|
|
169
169
|
if (tmp === get_COROUTINE_SUSPENDED())
|
|
170
170
|
tmp = yield tmp;
|
|
@@ -180,13 +180,13 @@ function HeadersData$headersStarts$slambda() {
|
|
|
180
180
|
if (HeadersData$headersStarts$slambdaClass === VOID) {
|
|
181
181
|
class $ {
|
|
182
182
|
constructor(this$0) {
|
|
183
|
-
this.
|
|
183
|
+
this.i35_1 = this$0;
|
|
184
184
|
}
|
|
185
|
-
|
|
185
|
+
j35($this$sequence, $completion) {
|
|
186
186
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_invoke__zhh2q8.bind(VOID, this, $this$sequence), $completion);
|
|
187
187
|
}
|
|
188
188
|
de(p1, $completion) {
|
|
189
|
-
return this.
|
|
189
|
+
return this.j35(p1 instanceof SequenceScope() ? p1 : THROW_CCE(), $completion);
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
192
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -196,7 +196,7 @@ function HeadersData$headersStarts$slambda() {
|
|
|
196
196
|
}
|
|
197
197
|
function HeadersData$headersStarts$slambda_0(this$0) {
|
|
198
198
|
var i = new (HeadersData$headersStarts$slambda())(this$0);
|
|
199
|
-
var l = ($this$sequence, $completion) => i.
|
|
199
|
+
var l = ($this$sequence, $completion) => i.j35($this$sequence, $completion);
|
|
200
200
|
l.$arity = 1;
|
|
201
201
|
return l;
|
|
202
202
|
}
|
|
@@ -207,38 +207,38 @@ function HeadersData() {
|
|
|
207
207
|
constructor() {
|
|
208
208
|
var tmp = this;
|
|
209
209
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
210
|
-
tmp.
|
|
210
|
+
tmp.q34_1 = ArrayList().n2();
|
|
211
211
|
}
|
|
212
|
-
|
|
213
|
-
return this.
|
|
212
|
+
r34() {
|
|
213
|
+
return this.q34_1.v2();
|
|
214
214
|
}
|
|
215
|
-
|
|
215
|
+
s34(subArraysCount) {
|
|
216
216
|
// Inline function 'kotlin.repeat' call
|
|
217
217
|
var inductionVariable = 0;
|
|
218
218
|
if (inductionVariable < subArraysCount)
|
|
219
219
|
do {
|
|
220
220
|
var index = inductionVariable;
|
|
221
221
|
inductionVariable = inductionVariable + 1 | 0;
|
|
222
|
-
this.
|
|
222
|
+
this.q34_1.t2(get_IntArrayPool().x1w());
|
|
223
223
|
}
|
|
224
224
|
while (inductionVariable < subArraysCount);
|
|
225
225
|
}
|
|
226
|
-
|
|
227
|
-
return this.
|
|
226
|
+
u34(index) {
|
|
227
|
+
return this.q34_1.u2(index / 768 | 0)[index % 768 | 0];
|
|
228
228
|
}
|
|
229
|
-
|
|
230
|
-
this.
|
|
229
|
+
f35(index, value) {
|
|
230
|
+
this.q34_1.u2(index / 768 | 0)[index % 768 | 0] = value;
|
|
231
231
|
}
|
|
232
|
-
|
|
232
|
+
t34() {
|
|
233
233
|
return sequence(HeadersData$headersStarts$slambda_0(this));
|
|
234
234
|
}
|
|
235
|
-
|
|
236
|
-
var _iterator__ex2g4s = this.
|
|
235
|
+
h35() {
|
|
236
|
+
var _iterator__ex2g4s = this.q34_1.q1();
|
|
237
237
|
while (_iterator__ex2g4s.r1()) {
|
|
238
238
|
var array = _iterator__ex2g4s.s1();
|
|
239
|
-
get_IntArrayPool().
|
|
239
|
+
get_IntArrayPool().y1w(array);
|
|
240
240
|
}
|
|
241
|
-
this.
|
|
241
|
+
this.q34_1.r4();
|
|
242
242
|
}
|
|
243
243
|
}
|
|
244
244
|
initMetadataForClass($, 'HeadersData', HeadersData);
|
|
@@ -248,13 +248,13 @@ function HeadersData() {
|
|
|
248
248
|
}
|
|
249
249
|
function dumpTo(_this__u8e3s4, indent, out) {
|
|
250
250
|
_init_properties_HttpHeadersMap_kt__hwatby();
|
|
251
|
-
var _iterator__ex2g4s = _this__u8e3s4.
|
|
251
|
+
var _iterator__ex2g4s = _this__u8e3s4.x34().q1();
|
|
252
252
|
while (_iterator__ex2g4s.r1()) {
|
|
253
253
|
var offset = _iterator__ex2g4s.s1();
|
|
254
254
|
out.s2(indent);
|
|
255
|
-
out.s2(_this__u8e3s4.
|
|
255
|
+
out.s2(_this__u8e3s4.g35(offset));
|
|
256
256
|
out.s2(' => ');
|
|
257
|
-
out.s2(_this__u8e3s4.
|
|
257
|
+
out.s2(_this__u8e3s4.w34(offset));
|
|
258
258
|
out.s2('\n');
|
|
259
259
|
}
|
|
260
260
|
}
|
|
@@ -265,7 +265,7 @@ function IntArrayPool$1() {
|
|
|
265
265
|
constructor() {
|
|
266
266
|
super(1000);
|
|
267
267
|
}
|
|
268
|
-
|
|
268
|
+
q1w() {
|
|
269
269
|
var tmp = 0;
|
|
270
270
|
var tmp_0 = new Int32Array(768);
|
|
271
271
|
while (tmp < 768) {
|
|
@@ -274,12 +274,12 @@ function IntArrayPool$1() {
|
|
|
274
274
|
}
|
|
275
275
|
return tmp_0;
|
|
276
276
|
}
|
|
277
|
-
|
|
277
|
+
n35(instance) {
|
|
278
278
|
fill(instance, -1);
|
|
279
|
-
return protoOf(DefaultPool()).
|
|
279
|
+
return protoOf(DefaultPool()).v1w.call(this, instance);
|
|
280
280
|
}
|
|
281
|
-
|
|
282
|
-
return this.
|
|
281
|
+
v1w(instance) {
|
|
282
|
+
return this.n35(isIntArray(instance) ? instance : THROW_CCE());
|
|
283
283
|
}
|
|
284
284
|
}
|
|
285
285
|
initMetadataForClass($);
|
|
@@ -294,15 +294,15 @@ function HeadersDataPool$1() {
|
|
|
294
294
|
constructor() {
|
|
295
295
|
super(1000);
|
|
296
296
|
}
|
|
297
|
-
|
|
297
|
+
q1w() {
|
|
298
298
|
return new (HeadersData())();
|
|
299
299
|
}
|
|
300
|
-
|
|
301
|
-
instance.
|
|
302
|
-
return protoOf(DefaultPool()).
|
|
300
|
+
r35(instance) {
|
|
301
|
+
instance.h35();
|
|
302
|
+
return protoOf(DefaultPool()).v1w.call(this, instance);
|
|
303
303
|
}
|
|
304
|
-
|
|
305
|
-
return this.
|
|
304
|
+
v1w(instance) {
|
|
305
|
+
return this.r35(instance instanceof HeadersData() ? instance : THROW_CCE());
|
|
306
306
|
}
|
|
307
307
|
}
|
|
308
308
|
initMetadataForClass($);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-http/ktor-http-cio/common/src/io/ktor/http/cio/HttpHeadersMap.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/util/Standard.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/util/Preconditions.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/js/src/kotlin/math.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/text/StringBuilder.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/collections/Collections.kt"],"sourcesContent":[null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-IntArrayPool>","<get-HeadersDataPool>","thresholdReached","resize","prevSize","prevData","headerOffset","message","headerHasName","name","nameStartIndex","nameEndIndex","builder","get","hash","headerIndex","offsets","put","valueStartIndex","valueEndIndex","sameNameHeaderIndex","nameAtOffset","valueAtOffset","release","toString","<generator-invoke>","$completion","joinedIndex","arr","localIndex","invoke","HeadersData$headersStarts$slambda","HeadersData$headersStarts$slambda$lambda","arraysCount","prepare","subArraysCount","index","at","set","value","headersStarts","array","dumpTo","<this>","indent","out","offset","produceInstance","clearInstance","instance","<init properties HttpHeadersMap.kt>"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAqRQA,CAAAA,EAAA;A;EAAA,mB;AAAsC,C;;4BAStCC,CAAAA,EAAA;A;EAAA,sB;AAA4C,C;;yBAhPxCC,CAAA,KAAAA,EAAkC;A,EAAyC,OAAzC,eAAQ,cAAiB,I;AAAe,C;eA4H1EC,CAAA,KAAAA,EAAa;A,MACjBC,WAAe,KAAfA,CAAe,K;MACfC,WAAe,KAAfA,CAAe,K;EAEf,cAAO,C;EACP,cAAkB,kBAAiB,CAAjB,CAAoB,GAAG,G;YACzC,K;;eAAc,qBAAgB,M;EAAiB,WAAS,KAAA,QAAS,MAAT,EAAyB,CAAzB,CAA4B,GAAG,CAAxC,C;EAA/C,YCzFG,M;MD2FkB,oBAAA,QAAS,MAAT,K;SAAA,sB,EAA0B;A,QAA1CC,eAAgB,sB;IACjB,UACI,QAAS,KAAG,eAAe,CAAlB,KADb,EAEI,QAAS,KAAG,eAAe,CAAlB,KAFb,EAGI,QAAS,KAAG,eAAe,CAAlB,KAHb,EAII,QAAS,KAAG,eAAe,CAAlB,KAJb,C;EAMJ,C;EAEA,qBAAgB,KAAQ,QAAR,C;;;EExJhB,MFyJQ,aAAY,KAAZ,CAAY,KEzJpB,E,CAAQ;A,QACRC,UAda,qB;IAeb,oCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;AFuJA,C;sBAEQC,CAAA,K,EAAkBC,I,EAAoBH,YAAtCE,EAAkE;A,MACtEE,iBAAqB,KAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;MACjCC,eAAmB,KAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;EAC/B,OAAe,gBAAR,KAAQ,CAAR,KAAQ,EAAgB,cAAhB,EAAgC,YAAhC,EAA8C,IAA9C,C;AACnB,C;;;;;kBA5JqDC,O;QAAR,oB;QACtB,c;QAGW,c;QACQ,aAAhB,qBAAgB,M;;QAqB1BC,CAAQJ,IAARI,EAAqC;A,QAC7C,mBAAQ,CAAR,C;UAAW,OAAO,I;;qBAEN,kBAAL,IAAK,C;YAAhBC,OGyiCgD,IAAI,MAAJ,C;YHxiChDC,cAAkB,OAAO,IAAP,CAAO,KAAzBA,I;eAEO,EAAA,IAAY,CAAZ,KAAY,KAAG,kBAAc,CAAd,IAA4B,CAA/B,KAAZ,KAAgE,EAAhE,C,EAA6E;A,UAC5E,wBAAc,IAAd,EAAoB,kBAAc,CAAd,CAApB,E,CAAgD;A,YAChD,OAAO,SAAc,kBAAc,CAAd,CAAd,C;UACX,C;UACA,cAAc,CAAC,cAAc,CAAf,QAAoB,IAApB,CAAoB,KAAlC,I;QACJ,C;QAEA,OAAO,I;MACX,C;SAqBOC,CAAAA,EAA+B;A,QAA2B,OAA3B,IAAY,CAAZ,KAAY,M;MAAc,C;SAiBzDC,CACHP,c,EACAC,Y,EACAO,e,EACAC,aAJGF,EAKL;A,QACM,2B,CAAoB;A,UACpB,Y;QACJ,C;;qBAEmB,kBAAR,IAAQ,CAAR,KAAQ,EAAkB,cAAlB,EAAkC,YAAlC,C;YAAnBH,OG8+BgD,IAAI,MAAJ,C;YH7+BhDL,OAAW,IAAQ,CAAR,KAAQ,GAAY,cAAZ,EAA4B,YAA5B,C;YAEnBM,cAAkB,OAAO,IAAP,CAAO,KAAzBA,I;YACAK,sBAA0B,E;eACnB,EAAA,IAAY,CAAZ,KAAY,KAAG,kBAAc,CAAd,IAA4B,CAA/B,KAAZ,KAAgE,EAAhE,C,EAA6E;A,UAC5E,wBAAc,IAAd,EAAoB,kBAAc,CAAd,CAApB,E,CAAgD;A,YAChD,sBAAsB,W;UAC1B,C;UACA,cAAc,CAAC,cAAc,CAAf,QAAoB,IAApB,CAAoB,KAAlC,I;QACJ,C;YAEAd,eAAmB,kBAAc,CAAd,C;QACnB,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAAqC,IAArC,C;QACZ,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAA6C,cAA7C,C;QACZ,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAA2C,YAA3C,C;QACZ,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAA8C,eAA9C,C;QACZ,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAA4C,aAA5C,C;QACZ,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAAuC,EAAvC,C;QAER,8BAAuB,EAAvB,E,CAAoC;A,UACpC,IAAY,CAAZ,KAAY,KAAI,0BAAsB,CAAtB,IAAoC,CAAxC,MAA4D,WAA5D,C;QAChB,C;QAEA,aAAA,IAAI,CAAJ,KAAI,IAAJ,I;MACJ,C;SA6COe,CAAiBf,YAAjBe,EAAkD;A,YACrDX,iBAAqB,IAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;YACjCC,eAAmB,IAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;QAC/B,OAAO,IAAQ,CAAR,KAAQ,GAAY,cAAZ,EAA4B,YAA5B,C;MACnB,C;SAEOW,CAAkBhB,YAAlBgB,EAAmD;A,YACtDJ,kBAAsB,IAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;YAClCC,gBAAoB,IAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;QAChC,OAAO,IAAQ,CAAR,KAAQ,GAAY,eAAZ,EAA6B,aAA7B,C;MACnB,C;SAEOI,CAAAA,EAAc;A,QACjB,aAAO,C;QACP,aAAiB,C;QACjB,qBAAgB,KAAQ,IAAR,CAAQ,KAAR,C;QAChB,aAAc,qBAAgB,M;MAClC,C;cAESC,CAAAA,EAAuB;A;;qBI+RzB,oB;QJ9RkB,aAAO,EAAP,S;QAArB,OClIG,MGgaqC,W;MJ7R5C,C;;;;;;;mCAuC8CC,CAAA,K,EAAA,c,EAAAC,WAAAD,EAC1C;A,MAAAE,cAAkB,C;MACN,0C;SAAA,sB,EAAQ;A,QAAfC,MAAO,sB;QACRC,aAAiB,C;WACV,aAAa,GAAb,CAAiB,M,EAAM;A,MACtB,sBAAG,cAAc,CAAjB,UAAsC,EAAtC,E,CAAmD;A,YACnD,wBAAM,WAAN,c;;;MACJ,C;MACA,0BAAc,CAAd,I;MACA,4BAAe,CAAf,I;IACJ,C;EACJ,C;EAAA,oB;AAAA,C;;;;;kBAXJ,M;;;SAA8CC,CAAA,c,EAAAJ,WAAAI,E;;O;SAjQlD,E,EAAAJ,W;;;;;;;;;4CAiQkDK,CAA9C,MAA8CA,E;;UAAAC,CAAA,c,EAAAN,WAAAM,uC;;;C;;;;;;kBAlBzB,I;;QAAA,YKtI+B,gB;;SLwIpDC,CAAAA,EAAyB;A,QAAW,OAAX,IAAO,CAAP,KAAO,K;MAAG,C;SAEnCC,CAAYC,cAAZD,EAAiC;A;YClFnB,qB;QAAd,wBDmFW,cCnFX,C;aAAA;A,gBAAKE,QAAS,iB;YAAA,6C;YDoFN,IAAO,CAAP,KAAO,IAAI,kBAAa,MAAjB,C;;UCpFf,4BDmFW,cCnFX,C;MDsFA,C;SAEAC,CAAOD,KAAPC,EAAwB;A,QACpB,OAAO,cAAO,QAAQ,GAAf,MAAkC,QAAQ,GAA1C,K;MACX,C;SAEAC,CAAQF,K,EAAYG,KAApBD,EAAgC;A,QAC5B,cAAO,QAAQ,GAAf,MAAkC,QAAQ,GAA1C,QAA+D,K;MACnE,C;SAEAE,CAAAA,EAAqC;A,QAYpC,OAZoC,SAAS,yCAAT,C;MAYrC,C;SAEAjB,CAAAA,EAAc;A,YACI,mC;eAAA,sB,EAAQ;A,cAAjBkB,QAAS,sB;UAAQ,kBAAa,KAAQ,KAAR,C;QAAa,C;QAChD,IAAO,CAAP,KAAO,K;MACX,C;;;;;;;eAlDKC,CAAIC,a,EAAsBC,M,EAAgBC,GAA1CH,EAA2D;A;MACjD,4C;SAAA,sB,EAAW;A,QAArBI,SAAU,sB;IACX,GAAI,IAAO,MAAP,C;IACJ,GAAI,IAAO,kBAAa,MAAb,CAAP,C;IACJ,GAAI,IAAO,MAAP,C;IACJ,GAAI,IAAO,kBAAc,MAAd,CAAP,C;IACJ,GAAI,IAAO,IAAP,C;EACR,C;AACJ,C;;;;;;cA6CiF,I;;SACpEC,CAAAA,EAAkC;A,YAAA,O;YAAA,uBAAS,GAAT,C;eAAA,MAAS,G,EAAT;A,UAAA,aAA8B,E;UAA9B,iB;QAA0C,C;QAAC,OAA3C,K;MAA0C,C;SAE5EC,CAAkBC,QAAlBD,EAAgD;A,QAC5C,KAAT,QAAS,EAAK,EAAL,C;QACT,OAAa,
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-http/ktor-http-cio/common/src/io/ktor/http/cio/HttpHeadersMap.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/util/Standard.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/util/Preconditions.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/js/src/kotlin/math.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/text/StringBuilder.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/collections/Collections.kt"],"sourcesContent":[null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-IntArrayPool>","<get-HeadersDataPool>","thresholdReached","resize","prevSize","prevData","headerOffset","message","headerHasName","name","nameStartIndex","nameEndIndex","builder","get","hash","headerIndex","offsets","put","valueStartIndex","valueEndIndex","sameNameHeaderIndex","nameAtOffset","valueAtOffset","release","toString","<generator-invoke>","$completion","joinedIndex","arr","localIndex","invoke","HeadersData$headersStarts$slambda","HeadersData$headersStarts$slambda$lambda","arraysCount","prepare","subArraysCount","index","at","set","value","headersStarts","array","dumpTo","<this>","indent","out","offset","produceInstance","clearInstance","instance","<init properties HttpHeadersMap.kt>"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAqRQA,CAAAA,EAAA;A;EAAA,mB;AAAsC,C;;4BAStCC,CAAAA,EAAA;A;EAAA,sB;AAA4C,C;;yBAhPxCC,CAAA,KAAAA,EAAkC;A,EAAyC,OAAzC,eAAQ,cAAiB,I;AAAe,C;eA4H1EC,CAAA,KAAAA,EAAa;A,MACjBC,WAAe,KAAfA,CAAe,K;MACfC,WAAe,KAAfA,CAAe,K;EAEf,cAAO,C;EACP,cAAkB,kBAAiB,CAAjB,CAAoB,GAAG,G;YACzC,K;;eAAc,qBAAgB,M;EAAiB,WAAS,KAAA,QAAS,MAAT,EAAyB,CAAzB,CAA4B,GAAG,CAAxC,C;EAA/C,YCzFG,M;MD2FkB,oBAAA,QAAS,MAAT,K;SAAA,sB,EAA0B;A,QAA1CC,eAAgB,sB;IACjB,UACI,QAAS,KAAG,eAAe,CAAlB,KADb,EAEI,QAAS,KAAG,eAAe,CAAlB,KAFb,EAGI,QAAS,KAAG,eAAe,CAAlB,KAHb,EAII,QAAS,KAAG,eAAe,CAAlB,KAJb,C;EAMJ,C;EAEA,qBAAgB,KAAQ,QAAR,C;;;EExJhB,MFyJQ,aAAY,KAAZ,CAAY,KEzJpB,E,CAAQ;A,QACRC,UAda,qB;IAeb,oCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;AFuJA,C;sBAEQC,CAAA,K,EAAkBC,I,EAAoBH,YAAtCE,EAAkE;A,MACtEE,iBAAqB,KAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;MACjCC,eAAmB,KAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;EAC/B,OAAe,gBAAR,KAAQ,CAAR,KAAQ,EAAgB,cAAhB,EAAgC,YAAhC,EAA8C,IAA9C,C;AACnB,C;;;;;kBA5JqDC,O;QAAR,oB;QACtB,c;QAGW,c;QACQ,aAAhB,qBAAgB,M;;QAqB1BC,CAAQJ,IAARI,EAAqC;A,QAC7C,mBAAQ,CAAR,C;UAAW,OAAO,I;;qBAEN,kBAAL,IAAK,C;YAAhBC,OGyiCgD,IAAI,MAAJ,C;YHxiChDC,cAAkB,OAAO,IAAP,CAAO,KAAzBA,I;eAEO,EAAA,IAAY,CAAZ,KAAY,KAAG,kBAAc,CAAd,IAA4B,CAA/B,KAAZ,KAAgE,EAAhE,C,EAA6E;A,UAC5E,wBAAc,IAAd,EAAoB,kBAAc,CAAd,CAApB,E,CAAgD;A,YAChD,OAAO,SAAc,kBAAc,CAAd,CAAd,C;UACX,C;UACA,cAAc,CAAC,cAAc,CAAf,QAAoB,IAApB,CAAoB,KAAlC,I;QACJ,C;QAEA,OAAO,I;MACX,C;SAqBOC,CAAAA,EAA+B;A,QAA2B,OAA3B,IAAY,CAAZ,KAAY,M;MAAc,C;SAiBzDC,CACHP,c,EACAC,Y,EACAO,e,EACAC,aAJGF,EAKL;A,QACM,2B,CAAoB;A,UACpB,Y;QACJ,C;;qBAEmB,kBAAR,IAAQ,CAAR,KAAQ,EAAkB,cAAlB,EAAkC,YAAlC,C;YAAnBH,OG8+BgD,IAAI,MAAJ,C;YH7+BhDL,OAAW,IAAQ,CAAR,KAAQ,GAAY,cAAZ,EAA4B,YAA5B,C;YAEnBM,cAAkB,OAAO,IAAP,CAAO,KAAzBA,I;YACAK,sBAA0B,E;eACnB,EAAA,IAAY,CAAZ,KAAY,KAAG,kBAAc,CAAd,IAA4B,CAA/B,KAAZ,KAAgE,EAAhE,C,EAA6E;A,UAC5E,wBAAc,IAAd,EAAoB,kBAAc,CAAd,CAApB,E,CAAgD;A,YAChD,sBAAsB,W;UAC1B,C;UACA,cAAc,CAAC,cAAc,CAAf,QAAoB,IAApB,CAAoB,KAAlC,I;QACJ,C;YAEAd,eAAmB,kBAAc,CAAd,C;QACnB,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAAqC,IAArC,C;QACZ,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAA6C,cAA7C,C;QACZ,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAA2C,YAA3C,C;QACZ,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAA8C,eAA9C,C;QACZ,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAA4C,aAA5C,C;QACZ,IAAY,CAAZ,KAAY,KAAI,eAAe,CAAnB,MAAuC,EAAvC,C;QAER,8BAAuB,EAAvB,E,CAAoC;A,UACpC,IAAY,CAAZ,KAAY,KAAI,0BAAsB,CAAtB,IAAoC,CAAxC,MAA4D,WAA5D,C;QAChB,C;QAEA,aAAA,IAAI,CAAJ,KAAI,IAAJ,I;MACJ,C;SA6COe,CAAiBf,YAAjBe,EAAkD;A,YACrDX,iBAAqB,IAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;YACjCC,eAAmB,IAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;QAC/B,OAAO,IAAQ,CAAR,KAAQ,GAAY,cAAZ,EAA4B,YAA5B,C;MACnB,C;SAEOW,CAAkBhB,YAAlBgB,EAAmD;A,YACtDJ,kBAAsB,IAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;YAClCC,gBAAoB,IAAY,CAAZ,KAAY,KAAG,eAAe,CAAlB,K;QAChC,OAAO,IAAQ,CAAR,KAAQ,GAAY,eAAZ,EAA6B,aAA7B,C;MACnB,C;SAEOI,CAAAA,EAAc;A,QACjB,aAAO,C;QACP,aAAiB,C;QACjB,qBAAgB,KAAQ,IAAR,CAAQ,KAAR,C;QAChB,aAAc,qBAAgB,M;MAClC,C;cAESC,CAAAA,EAAuB;A;;qBI+RzB,oB;QJ9RkB,aAAO,EAAP,S;QAArB,OClIG,MGgaqC,W;MJ7R5C,C;;;;;;;mCAuC8CC,CAAA,K,EAAA,c,EAAAC,WAAAD,EAC1C;A,MAAAE,cAAkB,C;MACN,0C;SAAA,sB,EAAQ;A,QAAfC,MAAO,sB;QACRC,aAAiB,C;WACV,aAAa,GAAb,CAAiB,M,EAAM;A,MACtB,sBAAG,cAAc,CAAjB,UAAsC,EAAtC,E,CAAmD;A,YACnD,wBAAM,WAAN,c;;;MACJ,C;MACA,0BAAc,CAAd,I;MACA,4BAAe,CAAf,I;IACJ,C;EACJ,C;EAAA,oB;AAAA,C;;;;;kBAXJ,M;;;SAA8CC,CAAA,c,EAAAJ,WAAAI,E;;O;SAjQlD,E,EAAAJ,W;;;;;;;;;4CAiQkDK,CAA9C,MAA8CA,E;;UAAAC,CAAA,c,EAAAN,WAAAM,uC;;;C;;;;;;kBAlBzB,I;;QAAA,YKtI+B,gB;;SLwIpDC,CAAAA,EAAyB;A,QAAW,OAAX,IAAO,CAAP,KAAO,K;MAAG,C;SAEnCC,CAAYC,cAAZD,EAAiC;A;YClFnB,qB;QAAd,wBDmFW,cCnFX,C;aAAA;A,gBAAKE,QAAS,iB;YAAA,6C;YDoFN,IAAO,CAAP,KAAO,IAAI,kBAAa,MAAjB,C;;UCpFf,4BDmFW,cCnFX,C;MDsFA,C;SAEAC,CAAOD,KAAPC,EAAwB;A,QACpB,OAAO,cAAO,QAAQ,GAAf,MAAkC,QAAQ,GAA1C,K;MACX,C;SAEAC,CAAQF,K,EAAYG,KAApBD,EAAgC;A,QAC5B,cAAO,QAAQ,GAAf,MAAkC,QAAQ,GAA1C,QAA+D,K;MACnE,C;SAEAE,CAAAA,EAAqC;A,QAYpC,OAZoC,SAAS,yCAAT,C;MAYrC,C;SAEAjB,CAAAA,EAAc;A,YACI,mC;eAAA,sB,EAAQ;A,cAAjBkB,QAAS,sB;UAAQ,kBAAa,KAAQ,KAAR,C;QAAa,C;QAChD,IAAO,CAAP,KAAO,K;MACX,C;;;;;;;eAlDKC,CAAIC,a,EAAsBC,M,EAAgBC,GAA1CH,EAA2D;A;MACjD,4C;SAAA,sB,EAAW;A,QAArBI,SAAU,sB;IACX,GAAI,IAAO,MAAP,C;IACJ,GAAI,IAAO,kBAAa,MAAb,CAAP,C;IACJ,GAAI,IAAO,MAAP,C;IACJ,GAAI,IAAO,kBAAc,MAAd,CAAP,C;IACJ,GAAI,IAAO,IAAP,C;EACR,C;AACJ,C;;;;;;cA6CiF,I;;SACpEC,CAAAA,EAAkC;A,YAAA,O;YAAA,uBAAS,GAAT,C;eAAA,MAAS,G,EAAT;A,UAAA,aAA8B,E;UAA9B,iB;QAA0C,C;QAAC,OAA3C,K;MAA0C,C;SAE5EC,CAAkBC,QAAlBD,EAAgD;A,QAC5C,KAAT,QAAS,EAAK,EAAL,C;QACT,OAAa,gCAAN,IAAM,EAAc,QAAd,C;MACjB,C;UAtQHC,Q;;;;;;;;;;;;;;cAyQyF,I;;SAC7EF,CAAAA,EAAqC;A,QAAa,4B;MAAD,C;SAEjDC,CAAkBC,QAAlBD,EAAsD;A,QAC3D,QAAS,M;QACT,OAAa,gCAAN,IAAM,EAAc,QAAd,C;MACjB,C;UA/QHC,Q;;;;;;;;;;mDArBDC,CAAAA,E;;;;;;C;;;;;"}
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { HttpHeadersMapp7szignu4ex as HttpHeadersMap } from './HttpHeadersMap.mjs';
|
|
2
|
-
import {
|
|
2
|
+
import { Long2qws0ah9gnpki as Long } from '../../../../../kotlin-kotlin-stdlib/kotlin/Primitives.mjs';
|
|
3
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
4
|
+
import { readLineStrictTo28itb6tlpz7zv as readLineStrictTo } from '../../../../../ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs';
|
|
3
5
|
import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
|
|
6
|
+
import { equalsLong28bsrfhwvd686 as equalsLong } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs';
|
|
4
7
|
import { IllegalStateExceptionkoljg5n0nrlr as IllegalStateException } from '../../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
|
|
5
8
|
import {
|
|
6
9
|
toString1pkumu07cwy4m as toString,
|
|
7
10
|
captureStack1fzi4aczwc4hg as captureStack,
|
|
8
11
|
} from '../../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
9
12
|
import { Unit_instance28fytmsmm6r23 as Unit_instance } from '../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
10
|
-
import { HttpHeaders_getInstance1z5nmwg0t7mku as HttpHeaders_getInstance } from '../../../../../ktor-ktor-http/io/ktor/http/HttpHeaders.mjs';
|
|
11
13
|
import { MutableRange2j0kfnqv5bc35 as MutableRange } from './internals/MutableRange.mjs';
|
|
12
|
-
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
13
14
|
import { suspendOrReturn49pspzlx5djv as suspendOrReturn } from '../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs';
|
|
14
15
|
import {
|
|
15
16
|
_Char___init__impl__6a9atx1csff5kwtduxl as _Char___init__impl__6a9atx,
|
|
@@ -44,25 +45,21 @@ function get_hostForbiddenSymbols() {
|
|
|
44
45
|
return hostForbiddenSymbols;
|
|
45
46
|
}
|
|
46
47
|
var hostForbiddenSymbols;
|
|
47
|
-
function get_httpLineEndings() {
|
|
48
|
-
_init_properties_HttpParser_kt__gbdom1();
|
|
49
|
-
return httpLineEndings;
|
|
50
|
-
}
|
|
51
48
|
var httpLineEndings;
|
|
52
49
|
var versions;
|
|
53
50
|
function *_generator_parseHeaders__yk88b9(input, builder, range, $completion) {
|
|
54
51
|
var headers = new (HttpHeadersMap())(builder);
|
|
55
52
|
try {
|
|
56
53
|
$l$loop: while (true) {
|
|
57
|
-
var tmp =
|
|
54
|
+
var tmp = readLineStrictTo(input, builder, new (Long())(8192, 0), VOID, $completion);
|
|
58
55
|
if (tmp === get_COROUTINE_SUSPENDED())
|
|
59
56
|
tmp = yield tmp;
|
|
60
|
-
if (
|
|
61
|
-
headers.
|
|
57
|
+
if (equalsLong(tmp, new (Long())(-1, -1))) {
|
|
58
|
+
headers.h35();
|
|
62
59
|
return null;
|
|
63
60
|
}
|
|
64
|
-
range.
|
|
65
|
-
var rangeLength = range.
|
|
61
|
+
range.t35_1 = builder.e35_1;
|
|
62
|
+
var rangeLength = range.t35_1 - range.s35_1 | 0;
|
|
66
63
|
if (rangeLength === 0)
|
|
67
64
|
break $l$loop;
|
|
68
65
|
if (rangeLength >= 8192) {
|
|
@@ -70,16 +67,16 @@ function *_generator_parseHeaders__yk88b9(input, builder, range, $completion) {
|
|
|
70
67
|
var message = 'Header line length limit exceeded';
|
|
71
68
|
throw IllegalStateException().o(toString(message));
|
|
72
69
|
}
|
|
73
|
-
var nameStart = range.
|
|
70
|
+
var nameStart = range.s35_1;
|
|
74
71
|
var nameEnd = parseHeaderName(builder, range);
|
|
75
|
-
var headerEnd = range.
|
|
72
|
+
var headerEnd = range.t35_1;
|
|
76
73
|
parseHeaderValue(builder, range);
|
|
77
|
-
var valueStart = range.
|
|
78
|
-
var valueEnd = range.
|
|
79
|
-
range.
|
|
80
|
-
headers.
|
|
74
|
+
var valueStart = range.s35_1;
|
|
75
|
+
var valueEnd = range.t35_1;
|
|
76
|
+
range.s35_1 = headerEnd;
|
|
77
|
+
headers.v34(nameStart, nameEnd, valueStart, valueEnd);
|
|
81
78
|
}
|
|
82
|
-
var host = headers.gi(
|
|
79
|
+
var host = headers.gi('Host');
|
|
83
80
|
if (!(host == null)) {
|
|
84
81
|
validateHostHeader(host);
|
|
85
82
|
}
|
|
@@ -87,7 +84,7 @@ function *_generator_parseHeaders__yk88b9(input, builder, range, $completion) {
|
|
|
87
84
|
} catch ($p) {
|
|
88
85
|
if ($p instanceof Error) {
|
|
89
86
|
var t = $p;
|
|
90
|
-
headers.
|
|
87
|
+
headers.h35();
|
|
91
88
|
throw t;
|
|
92
89
|
} else {
|
|
93
90
|
throw $p;
|
|
@@ -100,16 +97,16 @@ function parseHeaders(input, builder, range, $completion) {
|
|
|
100
97
|
}
|
|
101
98
|
function parseHeaderName(text, range) {
|
|
102
99
|
_init_properties_HttpParser_kt__gbdom1();
|
|
103
|
-
var index = range.
|
|
104
|
-
var end = range.
|
|
100
|
+
var index = range.s35_1;
|
|
101
|
+
var end = range.t35_1;
|
|
105
102
|
while (index < end) {
|
|
106
103
|
var ch = text.b(index);
|
|
107
|
-
if (ch === _Char___init__impl__6a9atx(58) && !(index === range.
|
|
108
|
-
range.
|
|
104
|
+
if (ch === _Char___init__impl__6a9atx(58) && !(index === range.s35_1)) {
|
|
105
|
+
range.s35_1 = index + 1 | 0;
|
|
109
106
|
return index;
|
|
110
107
|
}
|
|
111
108
|
if (isDelimiter(ch)) {
|
|
112
|
-
parseHeaderNameFailed(text, index, range.
|
|
109
|
+
parseHeaderNameFailed(text, index, range.s35_1, ch);
|
|
113
110
|
}
|
|
114
111
|
index = index + 1 | 0;
|
|
115
112
|
}
|
|
@@ -117,12 +114,12 @@ function parseHeaderName(text, range) {
|
|
|
117
114
|
}
|
|
118
115
|
function parseHeaderValue(text, range) {
|
|
119
116
|
_init_properties_HttpParser_kt__gbdom1();
|
|
120
|
-
var start = range.
|
|
121
|
-
var end = range.
|
|
117
|
+
var start = range.s35_1;
|
|
118
|
+
var end = range.t35_1;
|
|
122
119
|
var index = start;
|
|
123
120
|
index = skipSpacesAndHorizontalTabs(text, index, end);
|
|
124
121
|
if (index >= end) {
|
|
125
|
-
range.
|
|
122
|
+
range.s35_1 = end;
|
|
126
123
|
return Unit_instance;
|
|
127
124
|
}
|
|
128
125
|
var valueStart = index;
|
|
@@ -136,13 +133,13 @@ function parseHeaderValue(text, range) {
|
|
|
136
133
|
valueLastIndex = index;
|
|
137
134
|
index = index + 1 | 0;
|
|
138
135
|
}
|
|
139
|
-
range.
|
|
140
|
-
range.
|
|
136
|
+
range.s35_1 = valueStart;
|
|
137
|
+
range.t35_1 = valueLastIndex + 1 | 0;
|
|
141
138
|
}
|
|
142
139
|
function validateHostHeader(host) {
|
|
143
140
|
_init_properties_HttpParser_kt__gbdom1();
|
|
144
141
|
if (endsWith(host, ':')) {
|
|
145
|
-
throw ParserException().
|
|
142
|
+
throw ParserException().y35("Host header with ':' should contains port: " + toString(host));
|
|
146
143
|
}
|
|
147
144
|
var tmp$ret$1;
|
|
148
145
|
$l$block: {
|
|
@@ -159,7 +156,7 @@ function validateHostHeader(host) {
|
|
|
159
156
|
tmp$ret$1 = false;
|
|
160
157
|
}
|
|
161
158
|
if (tmp$ret$1) {
|
|
162
|
-
throw ParserException().
|
|
159
|
+
throw ParserException().y35('Host cannot contain any of the following symbols: ' + toString(get_hostForbiddenSymbols()));
|
|
163
160
|
}
|
|
164
161
|
}
|
|
165
162
|
function isDelimiter(ch) {
|
|
@@ -169,34 +166,34 @@ function isDelimiter(ch) {
|
|
|
169
166
|
function parseHeaderNameFailed(text, index, start, ch) {
|
|
170
167
|
_init_properties_HttpParser_kt__gbdom1();
|
|
171
168
|
if (ch === _Char___init__impl__6a9atx(58)) {
|
|
172
|
-
throw ParserException().
|
|
169
|
+
throw ParserException().y35('Empty header names are not allowed as per RFC7230.');
|
|
173
170
|
}
|
|
174
171
|
if (index === start) {
|
|
175
|
-
throw ParserException().
|
|
172
|
+
throw ParserException().y35('Multiline headers via line folding is not supported since it is deprecated as per RFC7230.');
|
|
176
173
|
}
|
|
177
174
|
characterIsNotAllowed(text, ch);
|
|
178
175
|
}
|
|
179
176
|
function noColonFound(text, range) {
|
|
180
177
|
_init_properties_HttpParser_kt__gbdom1();
|
|
181
|
-
var tmp2 = range.
|
|
178
|
+
var tmp2 = range.s35_1;
|
|
182
179
|
// Inline function 'kotlin.text.substring' call
|
|
183
|
-
var endIndex = range.
|
|
180
|
+
var endIndex = range.t35_1;
|
|
184
181
|
var tmp$ret$0 = toString(charSequenceSubSequence(text, tmp2, endIndex));
|
|
185
|
-
throw ParserException().
|
|
182
|
+
throw ParserException().y35('No colon in HTTP header in ' + tmp$ret$0 + ' in builder: \n' + toString(text));
|
|
186
183
|
}
|
|
187
184
|
function characterIsNotAllowed(text, ch) {
|
|
188
185
|
_init_properties_HttpParser_kt__gbdom1();
|
|
189
186
|
// Inline function 'kotlin.code' call
|
|
190
187
|
var tmp$ret$0 = Char__toInt_impl_vasixd(ch);
|
|
191
|
-
throw ParserException().
|
|
188
|
+
throw ParserException().y35('Character with code ' + (tmp$ret$0 & 255) + ' is not allowed in header names, \n' + toString(text));
|
|
192
189
|
}
|
|
193
190
|
var ParserExceptionClass;
|
|
194
191
|
function ParserException() {
|
|
195
192
|
if (ParserExceptionClass === VOID) {
|
|
196
193
|
class $ extends IllegalStateException() {
|
|
197
|
-
static
|
|
194
|
+
static y35(message) {
|
|
198
195
|
var $this = this.o(message);
|
|
199
|
-
captureStack($this, $this.
|
|
196
|
+
captureStack($this, $this.x35_1);
|
|
200
197
|
return $this;
|
|
201
198
|
}
|
|
202
199
|
}
|
|
@@ -210,8 +207,8 @@ function _init_properties_HttpParser_kt__gbdom1() {
|
|
|
210
207
|
if (!properties_initialized_HttpParser_kt_uedryv) {
|
|
211
208
|
properties_initialized_HttpParser_kt_uedryv = true;
|
|
212
209
|
hostForbiddenSymbols = setOf([new (Char())(_Char___init__impl__6a9atx(47)), new (Char())(_Char___init__impl__6a9atx(63)), new (Char())(_Char___init__impl__6a9atx(35)), new (Char())(_Char___init__impl__6a9atx(64))]);
|
|
213
|
-
httpLineEndings = LineEndingMode__plus_impl_ttpz2j(Companion_getInstance().
|
|
214
|
-
versions = Companion_instance.
|
|
210
|
+
httpLineEndings = LineEndingMode__plus_impl_ttpz2j(Companion_getInstance().y1v_1, Companion_getInstance().x1v_1);
|
|
211
|
+
versions = Companion_instance.z35(listOf(['HTTP/1.0', 'HTTP/1.1']));
|
|
215
212
|
}
|
|
216
213
|
}
|
|
217
214
|
//region block: exports
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-http/ktor-http-cio/common/src/io/ktor/http/cio/HttpParser.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/util/Preconditions.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/common/src/generated/_Strings.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/text/Strings.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/CharCode.kt"],"sourcesContent":[null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-hostForbiddenSymbols>","<
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-http/ktor-http-cio/common/src/io/ktor/http/cio/HttpParser.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/util/Preconditions.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/common/src/generated/_Strings.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/text/Strings.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/CharCode.kt"],"sourcesContent":[null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-hostForbiddenSymbols>","<generator-parseHeaders>","input","builder","range","$completion","headers","rangeLength","nameStart","nameEnd","headerEnd","valueStart","valueEnd","host","t","parseHeaders","parseHeaderName","text","index","end","ch","parseHeaderValue","start","valueLastIndex","validateHostHeader","element","isDelimiter","parseHeaderNameFailed","noColonFound","characterIsNotAllowed","message","<init properties HttpParser.kt>"],"mappings":"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"}
|