@attocash/commons-js 5.0.0
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-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs +34 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs +323 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs +100 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs +104 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs +258 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs +24 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs +247 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs +157 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs +174 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs +126 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs +194 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs +263 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs +845 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs +95 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs +243 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs +864 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs +317 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs +756 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs +682 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs +52 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs +240 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs +175 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs +698 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs +107 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs +71 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs +124 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs +260 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs +61 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs +456 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs +683 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs +94 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs +46 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs +57 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs +442 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs +53 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs +53 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs +53 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs +53 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs +130 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.d.ts +19 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs +23 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs +109 -0
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.d.ts +41 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.mjs +534 -0
- package/commons-commons-core/cash/atto/commons/AttoAccount.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.d.ts +37 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs +468 -0
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.d.ts +36 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.mjs +236 -0
- package/commons-commons-core/cash/atto/commons/AttoAddress.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.d.ts +33 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs +25 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs +162 -0
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.export.d.ts +51 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs +30 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.mjs +341 -0
- package/commons-commons-core/cash/atto/commons/AttoAmount.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.d.ts +252 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs +61 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.mjs +2483 -0
- package/commons-commons-core/cash/atto/commons/AttoBlock.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs +141 -0
- package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.export.d.ts +25 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs +133 -0
- package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.export.d.ts +35 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.mjs +182 -0
- package/commons-commons-core/cash/atto/commons/AttoHash.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs +47 -0
- package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.export.d.ts +30 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.mjs +233 -0
- package/commons-commons-core/cash/atto/commons/AttoHeight.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.export.d.ts +51 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs +33 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs +189 -0
- package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.d.ts +25 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs +65 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs +189 -0
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.d.ts +26 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs +21 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs +129 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.export.d.ts +34 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs +413 -0
- package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.export.d.ts +14 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs +13 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.mjs +61 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.export.d.ts +27 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.mjs +135 -0
- package/commons-commons-core/cash/atto/commons/AttoSignature.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.d.ts +14 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs +12 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs +478 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.mjs +169 -0
- package/commons-commons-core/cash/atto/commons/AttoSigner.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.d.ts +15 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs +13 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs +81 -0
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.export.d.ts +34 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs +338 -0
- package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.d.ts +25 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.mjs +156 -0
- package/commons-commons-core/cash/atto/commons/AttoVersion.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.export.d.ts +35 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.mjs +387 -0
- package/commons-commons-core/cash/atto/commons/AttoVote.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.export.d.ts +29 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs +19 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.mjs +250 -0
- package/commons-commons-core/cash/atto/commons/AttoWork.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/Extensions.export.d.ts +4 -0
- package/commons-commons-core/cash/atto/commons/Extensions.export.mjs +16 -0
- package/commons-commons-core/cash/atto/commons/Extensions.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/Extensions.mjs +99 -0
- package/commons-commons-core/cash/atto/commons/Extensions.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs +55 -0
- package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs +54 -0
- package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/utils/Base32.mjs +156 -0
- package/commons-commons-core/cash/atto/commons/utils/Base32.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs +40 -0
- package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs.map +1 -0
- package/commons-commons-core.mjs +29 -0
- package/commons-commons-core.mjs.map +1 -0
- package/commons-commons-js/cash/atto/commons/js/Placeholder.mjs +14 -0
- package/commons-commons-js/cash/atto/commons/js/Placeholder.mjs.map +1 -0
- package/commons-commons-js.mjs +10 -0
- package/commons-commons-js.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.d.ts +99 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs +37 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.d.ts +21 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs +4 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs +94 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs +865 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs +1857 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.d.ts +3 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.mjs +12 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.mjs +577 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.mjs.map +1 -0
- package/commons-commons-node-remote.mjs +7 -0
- package/commons-commons-node-remote.mjs.map +1 -0
- package/commons-commons-node.mjs +7 -0
- package/commons-commons-node.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs +73 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.d.ts +10 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs +4 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs +22 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs +399 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.d.ts +3 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs +12 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs +272 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs +402 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs.map +1 -0
- package/commons-commons-worker-remote.mjs +7 -0
- package/commons-commons-worker-remote.mjs.map +1 -0
- package/commons-commons-worker.mjs +4 -0
- package/commons-commons-worker.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/index.mjs +5 -0
- package/kotlin-kotlin-stdlib/KTypeHelpers.mjs +47 -0
- package/kotlin-kotlin-stdlib/KTypeHelpers.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs +52 -0
- package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Char.mjs +133 -0
- package/kotlin-kotlin-stdlib/kotlin/Char.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +158 -0
- package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Enum.mjs +71 -0
- package/kotlin-kotlin-stdlib/kotlin/Enum.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +98 -0
- package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Library.mjs +29 -0
- package/kotlin-kotlin-stdlib/kotlin/Library.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Number.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/Number.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs +53 -0
- package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs +163 -0
- package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Result.mjs +143 -0
- package/kotlin-kotlin-stdlib/kotlin/Result.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Standard.mjs +31 -0
- package/kotlin-kotlin-stdlib/kotlin/Standard.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +103 -0
- package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UByte.mjs +105 -0
- package/kotlin-kotlin-stdlib/kotlin/UByte.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +186 -0
- package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UInt.mjs +105 -0
- package/kotlin-kotlin-stdlib/kotlin/UInt.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +186 -0
- package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ULong.mjs +108 -0
- package/kotlin-kotlin-stdlib/kotlin/ULong.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +187 -0
- package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UShort.mjs +106 -0
- package/kotlin-kotlin-stdlib/kotlin/UShort.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +186 -0
- package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Unit.mjs +34 -0
- package/kotlin-kotlin-stdlib/kotlin/Unit.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs +169 -0
- package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +101 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +244 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +311 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +53 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +224 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs +101 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +43 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +77 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +547 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs +44 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +214 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs +128 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +92 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +313 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs +96 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +174 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +143 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs +71 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs +54 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +726 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs +63 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs +65 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs +37 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs +45 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs +48 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs +43 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +210 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +47 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +58 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +114 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +21 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +318 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +182 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +501 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs +30 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs +41 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +32 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs +137 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs +67 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs +23 -0
- package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs +39 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +78 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +86 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +238 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs +150 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs +55 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs +76 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs +43 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs +53 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs +139 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +69 -0
- package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +437 -0
- package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/hacks.mjs +46 -0
- package/kotlin-kotlin-stdlib/kotlin/hacks.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs +50 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs +83 -0
- package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs +16 -0
- package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs +95 -0
- package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs +70 -0
- package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs +51 -0
- package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs +79 -0
- package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs +285 -0
- package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs +15 -0
- package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs +238 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs +73 -0
- package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs +75 -0
- package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs +15 -0
- package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs +78 -0
- package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs +12 -0
- package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs +174 -0
- package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/void.mjs +21 -0
- package/kotlin-kotlin-stdlib/kotlin/js/void.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs +55 -0
- package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/longJs.mjs +387 -0
- package/kotlin-kotlin-stdlib/kotlin/longJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/math/math.mjs +49 -0
- package/kotlin-kotlin-stdlib/kotlin/math/math.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs +30 -0
- package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +74 -0
- package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +99 -0
- package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +246 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +130 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +226 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs +26 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs +17 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +68 -0
- package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs +52 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +115 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs +50 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs +183 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs +80 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs +64 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs +285 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs +169 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs +117 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs +64 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs +30 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs +49 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs +33 -0
- package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs +520 -0
- package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs +271 -0
- package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs +220 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs +146 -0
- package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs +154 -0
- package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +847 -0
- package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs +291 -0
- package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs +38 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs +61 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs +118 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +128 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs +17 -0
- package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs +40 -0
- package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs +119 -0
- package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs +100 -0
- package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +256 -0
- package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs +139 -0
- package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs +255 -0
- package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs +225 -0
- package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +773 -0
- package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs +80 -0
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs +111 -0
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +179 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs +84 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/noPackageHacks.mjs +62 -0
- package/kotlin-kotlin-stdlib/noPackageHacks.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/reflection.mjs +181 -0
- package/kotlin-kotlin-stdlib/reflection.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/reflectionJs.mjs +67 -0
- package/kotlin-kotlin-stdlib/reflectionJs.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +38 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +26 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +34 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs +53 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs.map +1 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +47 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs.map +1 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +232 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs.map +1 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs +55 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +98 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +285 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +96 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +855 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +105 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs +23 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +108 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +96 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +87 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +72 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +65 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +78 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +83 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs +22 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs +39 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +59 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +221 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +75 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +134 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +34 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +49 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +79 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +410 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +213 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +1910 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +56 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +83 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs +22 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs +23 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +31 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +175 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +67 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs +22 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs +28 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs +50 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +3352 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +320 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +76 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +24 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +106 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +93 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +135 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +100 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs +22 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +196 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +13 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +31 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +69 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +49 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs +15 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +302 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +62 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +56 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +335 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs +48 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +86 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +62 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +64 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs +23 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +29 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs +22 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs +50 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs +12 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs +12 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +37 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +90 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +133 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +268 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs +453 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +210 -0
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +34 -0
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +67 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs +48 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +599 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +153 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +16 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs +15 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +81 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +179 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +528 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +46 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +37 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs +77 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs +23 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +148 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +249 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs +24 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs +361 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +102 -0
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs +42 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +107 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +193 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs +32 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +89 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +282 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +153 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +46 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +216 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +117 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +126 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +304 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs +438 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +137 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +148 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +49 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +47 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +141 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +135 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs +22 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +313 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +711 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +130 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +198 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +127 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs +15 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +78 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +86 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +138 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +92 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +127 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +260 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +33 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +333 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs +53 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +1317 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +488 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +260 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +318 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +211 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +209 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs +15 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +31 -0
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +198 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs +42 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +96 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs +26 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +431 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +570 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs +26 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +12 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +756 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +107 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +221 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +48 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +126 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +259 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +155 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +107 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +24 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +47 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +364 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +64 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +80 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +699 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +381 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +170 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs +179 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +990 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +136 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs.map +1 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs +15 -0
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs +56 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs +381 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs +52 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs +161 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs +39 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs +1338 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs +122 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs +12 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.d.ts +4 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs +13 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs +29 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs.map +1 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs +1339 -0
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs.map +1 -0
- package/ktor-ktor-client-cio.mjs +12 -0
- package/ktor-ktor-client-cio.mjs.map +1 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +816 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs +25 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +1 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +39 -0
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +430 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +149 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs +59 -0
- package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +71 -0
- package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +112 -0
- package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +311 -0
- package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +183 -0
- package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +47 -0
- package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +179 -0
- package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +476 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs +15 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +128 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs +70 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +29 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +84 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs +40 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs +23 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +158 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.d.ts +4 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs +13 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +92 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +496 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +330 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs +13 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +212 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +77 -0
- package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs +31 -0
- package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +467 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +288 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +632 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs +15 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +916 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +70 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +524 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +288 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +358 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +420 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +513 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +333 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +30 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +52 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +52 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +245 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +90 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +297 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs +46 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs +23 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +332 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +100 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs +23 -0
- package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +50 -0
- package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +286 -0
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +107 -0
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs +48 -0
- package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs +46 -0
- package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +15 -0
- package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +67 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +197 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +153 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +417 -0
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +209 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +69 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +55 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs +24 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +79 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +30 -0
- package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs.map +1 -0
- package/ktor-ktor-client-core.mjs +12 -0
- package/ktor-ktor-client-core.mjs.map +1 -0
- package/ktor-ktor-events/io/ktor/events/Events.mjs +97 -0
- package/ktor-ktor-events/io/ktor/events/Events.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Codecs.mjs +382 -0
- package/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +457 -0
- package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +219 -0
- package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Headers.mjs +153 -0
- package/ktor-ktor-http/io/ktor/http/Headers.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +373 -0
- package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +244 -0
- package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +54 -0
- package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +95 -0
- package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +108 -0
- package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +150 -0
- package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Parameters.mjs +144 -0
- package/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Query.mjs +109 -0
- package/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +284 -0
- package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +30 -0
- package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLParser.mjs +400 -0
- package/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +141 -0
- package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/URLUtils.mjs +187 -0
- package/ktor-ktor-http/io/ktor/http/URLUtils.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/Url.mjs +384 -0
- package/ktor-ktor-http/io/ktor/http/Url.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +157 -0
- package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +42 -0
- package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs +22 -0
- package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +137 -0
- package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs.map +1 -0
- package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +51 -0
- package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +36 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs +680 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs +221 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs +171 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +389 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +468 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +888 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs +51 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs +58 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +314 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +366 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +64 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs +12 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +477 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +30 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +30 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs.map +1 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs +61 -0
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs +12 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +700 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +27 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +414 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs +28 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +89 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +1825 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +124 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +509 -0
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs +107 -0
- package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +89 -0
- package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +139 -0
- package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs +15 -0
- package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +65 -0
- package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +118 -0
- package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +72 -0
- package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +406 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs +34 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +78 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +38 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +43 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +110 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs +22 -0
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +12 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs +17 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +38 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +54 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +18 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs +22 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +60 -0
- package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +42 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +81 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +50 -0
- package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs +22 -0
- package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs +42 -0
- package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs +35 -0
- package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs +107 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs +304 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs +573 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs +26 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs +129 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs +33 -0
- package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs +71 -0
- package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs +34 -0
- package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs +41 -0
- package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs +56 -0
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs.map +1 -0
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs +163 -0
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs.map +1 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs +18 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs.map +1 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs +99 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs.map +1 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs +22 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs.map +1 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs +33 -0
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs.map +1 -0
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +48 -0
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs.map +1 -0
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +419 -0
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +33 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs.map +1 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs +15 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs.map +1 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +790 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +195 -0
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -0
- package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +44 -0
- package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs.map +1 -0
- package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs +8 -0
- package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/Attributes.mjs +127 -0
- package/ktor-ktor-utils/io/ktor/util/Attributes.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +73 -0
- package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +181 -0
- package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/Charset.mjs +34 -0
- package/ktor-ktor-utils/io/ktor/util/Charset.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/Collections.mjs +15 -0
- package/ktor-ktor-utils/io/ktor/util/Collections.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs +12 -0
- package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +41 -0
- package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +152 -0
- package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +45 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +225 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs +16 -0
- package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/StringValues.mjs +377 -0
- package/ktor-ktor-utils/io/ktor/util/StringValues.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/Text.mjs +132 -0
- package/ktor-ktor-utils/io/ktor/util/Text.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs +32 -0
- package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs +113 -0
- package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +31 -0
- package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/date/Date.mjs +519 -0
- package/ktor-ktor-utils/io/ktor/util/date/Date.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +61 -0
- package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs +11 -0
- package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +100 -0
- package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +137 -0
- package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +84 -0
- package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs +16 -0
- package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +145 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +120 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +366 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs +16 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +41 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs +15 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +50 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +91 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs +29 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs +12 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +196 -0
- package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +55 -0
- package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs.map +1 -0
- package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs +12 -0
- package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +217 -0
- package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +49 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +204 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +47 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +173 -0
- package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs +47 -0
- package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs +19 -0
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs.map +1 -0
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs +846 -0
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs.map +1 -0
- package/package.json +23 -0
|
@@ -0,0 +1,1910 @@
|
|
|
1
|
+
import {
|
|
2
|
+
initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
|
|
3
|
+
initMetadataForInterface1egvbzx539z91 as initMetadataForInterface,
|
|
4
|
+
initMetadataForLambda3af3he42mmnh as initMetadataForLambda,
|
|
5
|
+
} from '../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
6
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
7
|
+
import {
|
|
8
|
+
LockFreeLinkedListHeaduwhs9comnpmn as LockFreeLinkedListHead,
|
|
9
|
+
LockFreeLinkedListNode18403qmazubk5 as LockFreeLinkedListNode,
|
|
10
|
+
} from './internal/LinkedList.mjs';
|
|
11
|
+
import { StringBuildermazzzhj6kkai as StringBuilder } from '../../../kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs';
|
|
12
|
+
import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
13
|
+
import {
|
|
14
|
+
equals2au1ep9vhcato as equals,
|
|
15
|
+
toString1pkumu07cwy4m as toString,
|
|
16
|
+
protoOf180f3jzyo7rfj as protoOf,
|
|
17
|
+
anyToString3ho3k49fc56mj as anyToString,
|
|
18
|
+
} from '../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
19
|
+
import {
|
|
20
|
+
get_DEBUG1a8uv2i5oid01 as get_DEBUG,
|
|
21
|
+
get_classSimpleName2jgk6lzg9ft1 as get_classSimpleName,
|
|
22
|
+
get_hexAddress1mxa7txdmiojm as get_hexAddress,
|
|
23
|
+
} from './Debug.mjs';
|
|
24
|
+
import {
|
|
25
|
+
throwUninitializedPropertyAccessExceptionyynx7gkm73wd as throwUninitializedPropertyAccessException,
|
|
26
|
+
THROW_CCE2g6jy02ryeudk as THROW_CCE,
|
|
27
|
+
} from '../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
|
|
28
|
+
import { ArrayList3it5z8td81qkl as ArrayList } from '../../../kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs';
|
|
29
|
+
import { CompletedExceptionally3itrk74dxkv9s as CompletedExceptionally } from './CompletionState.mjs';
|
|
30
|
+
import { JobCancellationException2g3wpni5v5fkt as JobCancellationException } from './Exceptions.mjs';
|
|
31
|
+
import { CancellationException3b36o9qz53rgr as CancellationException } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs';
|
|
32
|
+
import { TimeoutCancellationException198b5zwr3v3uw as TimeoutCancellationException } from './Timeout.mjs';
|
|
33
|
+
import { identitySet1lu9dl60optk8 as identitySet } from './internal/Concurrent.mjs';
|
|
34
|
+
import { unwrap34f7x4f5snsxt as unwrap } from './internal/StackTraceRecovery.mjs';
|
|
35
|
+
import { addSuppressedu5jwjfvsc039 as addSuppressed } from '../../../kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs';
|
|
36
|
+
import {
|
|
37
|
+
NonDisposableHandle_instance3k5b81ogrgecy as NonDisposableHandle_instance,
|
|
38
|
+
invokeOnCompletion3npqdfp2wzhn6 as invokeOnCompletion,
|
|
39
|
+
ParentJob1a3idoswyjefg as ParentJob,
|
|
40
|
+
Key_instance2tirv2rj82ml4 as Key_instance,
|
|
41
|
+
invokeOnCompletion$default6tc1ee8hzqwd as invokeOnCompletion$default,
|
|
42
|
+
ensureActive2yo7199srjlgl as ensureActive,
|
|
43
|
+
cancel$default2gzemzkga6aea as cancel$default,
|
|
44
|
+
Job29shfjfygy86k as Job,
|
|
45
|
+
} from './Job.mjs';
|
|
46
|
+
import { CompletionHandlerException1h8udyjlr1wky as CompletionHandlerException } from './Exceptions.common.mjs';
|
|
47
|
+
import { isInterface3d6p8outrmvmk as isInterface } from '../../../kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs';
|
|
48
|
+
import { intercepted2ogpsikxxj4u0 as intercepted } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs';
|
|
49
|
+
import { CancellableContinuationImpl1cx201opicavg as CancellableContinuationImpl } from './CancellableContinuationImpl.mjs';
|
|
50
|
+
import { disposeOnCancellation302lv5bib5mna as disposeOnCancellation } from './CancellableContinuation.mjs';
|
|
51
|
+
import { IllegalStateExceptionkoljg5n0nrlr as IllegalStateException } from '../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
|
|
52
|
+
import { SynchronizedObject32xqzf15iiskd as SynchronizedObject } from './internal/Synchronized.mjs';
|
|
53
|
+
import {
|
|
54
|
+
atomic$boolean$1iggki4z65a2h as atomic$boolean$1,
|
|
55
|
+
atomic$ref$130aurmcwdfdf1 as atomic$ref$1,
|
|
56
|
+
} from '../../../kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs';
|
|
57
|
+
import { toString30pk9tzaqopn as toString_0 } from '../../../kotlin-kotlin-stdlib/kotlin/Library.mjs';
|
|
58
|
+
import { CoroutineImpl2sn3kjnwmfr10 as CoroutineImpl } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs';
|
|
59
|
+
import {
|
|
60
|
+
SequenceScope1coiso86pqzq2 as SequenceScope,
|
|
61
|
+
sequence2vgswtrxvqoa7 as sequence,
|
|
62
|
+
} from '../../../kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs';
|
|
63
|
+
import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
|
|
64
|
+
import {
|
|
65
|
+
plusolev77jfy5r9 as plus,
|
|
66
|
+
get6d5x931vk0s as get,
|
|
67
|
+
fold36i9psb7d5v48 as fold,
|
|
68
|
+
minusKeyyqanvso9aovh as minusKey,
|
|
69
|
+
} from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs';
|
|
70
|
+
import {
|
|
71
|
+
Companion_instance2oawqq9qiaris as Companion_instance,
|
|
72
|
+
_Result___init__impl__xyqfz83hut4nr3dfvi3 as _Result___init__impl__xyqfz8,
|
|
73
|
+
createFailure8paxfkfa5dc7 as createFailure,
|
|
74
|
+
} from '../../../kotlin-kotlin-stdlib/kotlin/Result.mjs';
|
|
75
|
+
import { CompletableJob1w6swnu15iclo as CompletableJob } from './CompletableJob.mjs';
|
|
76
|
+
import { Symbol17xuwzgi5g8ve as Symbol } from './internal/Symbol.mjs';
|
|
77
|
+
//region block: imports
|
|
78
|
+
//endregion
|
|
79
|
+
//region block: pre-declaration
|
|
80
|
+
//endregion
|
|
81
|
+
function get_COMPLETING_ALREADY() {
|
|
82
|
+
_init_properties_JobSupport_kt__68f172();
|
|
83
|
+
return COMPLETING_ALREADY;
|
|
84
|
+
}
|
|
85
|
+
var COMPLETING_ALREADY;
|
|
86
|
+
function get_COMPLETING_WAITING_CHILDREN() {
|
|
87
|
+
_init_properties_JobSupport_kt__68f172();
|
|
88
|
+
return COMPLETING_WAITING_CHILDREN;
|
|
89
|
+
}
|
|
90
|
+
var COMPLETING_WAITING_CHILDREN;
|
|
91
|
+
function get_COMPLETING_RETRY() {
|
|
92
|
+
_init_properties_JobSupport_kt__68f172();
|
|
93
|
+
return COMPLETING_RETRY;
|
|
94
|
+
}
|
|
95
|
+
var COMPLETING_RETRY;
|
|
96
|
+
function get_TOO_LATE_TO_CANCEL() {
|
|
97
|
+
_init_properties_JobSupport_kt__68f172();
|
|
98
|
+
return TOO_LATE_TO_CANCEL;
|
|
99
|
+
}
|
|
100
|
+
var TOO_LATE_TO_CANCEL;
|
|
101
|
+
function get_SEALED() {
|
|
102
|
+
_init_properties_JobSupport_kt__68f172();
|
|
103
|
+
return SEALED;
|
|
104
|
+
}
|
|
105
|
+
var SEALED;
|
|
106
|
+
function get_EMPTY_NEW() {
|
|
107
|
+
_init_properties_JobSupport_kt__68f172();
|
|
108
|
+
return EMPTY_NEW;
|
|
109
|
+
}
|
|
110
|
+
var EMPTY_NEW;
|
|
111
|
+
function get_EMPTY_ACTIVE() {
|
|
112
|
+
_init_properties_JobSupport_kt__68f172();
|
|
113
|
+
return EMPTY_ACTIVE;
|
|
114
|
+
}
|
|
115
|
+
var EMPTY_ACTIVE;
|
|
116
|
+
var EmptyClass;
|
|
117
|
+
function Empty() {
|
|
118
|
+
if (EmptyClass === VOID) {
|
|
119
|
+
class $ {
|
|
120
|
+
constructor(isActive) {
|
|
121
|
+
this.q26_1 = isActive;
|
|
122
|
+
}
|
|
123
|
+
t1x() {
|
|
124
|
+
return this.q26_1;
|
|
125
|
+
}
|
|
126
|
+
j24() {
|
|
127
|
+
return null;
|
|
128
|
+
}
|
|
129
|
+
toString() {
|
|
130
|
+
return 'Empty{' + (this.q26_1 ? 'Active' : 'New') + '}';
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
initMetadataForClass($, 'Empty', VOID, VOID, [Incomplete()]);
|
|
134
|
+
EmptyClass = $;
|
|
135
|
+
}
|
|
136
|
+
return EmptyClass;
|
|
137
|
+
}
|
|
138
|
+
var IncompleteClass;
|
|
139
|
+
function Incomplete() {
|
|
140
|
+
if (IncompleteClass === VOID) {
|
|
141
|
+
class $ {}
|
|
142
|
+
initMetadataForInterface($, 'Incomplete');
|
|
143
|
+
IncompleteClass = $;
|
|
144
|
+
}
|
|
145
|
+
return IncompleteClass;
|
|
146
|
+
}
|
|
147
|
+
var NodeListClass;
|
|
148
|
+
function NodeList() {
|
|
149
|
+
if (NodeListClass === VOID) {
|
|
150
|
+
class $ extends LockFreeLinkedListHead() {
|
|
151
|
+
t1x() {
|
|
152
|
+
return true;
|
|
153
|
+
}
|
|
154
|
+
j24() {
|
|
155
|
+
return this;
|
|
156
|
+
}
|
|
157
|
+
u26(state) {
|
|
158
|
+
// Inline function 'kotlin.text.buildString' call
|
|
159
|
+
// Inline function 'kotlin.apply' call
|
|
160
|
+
var this_0 = StringBuilder().a1();
|
|
161
|
+
this_0.jb('List{');
|
|
162
|
+
this_0.jb(state);
|
|
163
|
+
this_0.jb('}[');
|
|
164
|
+
var first = true;
|
|
165
|
+
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
|
|
166
|
+
var cur = this.k24_1;
|
|
167
|
+
while (!equals(cur, this)) {
|
|
168
|
+
var node = cur;
|
|
169
|
+
if (node instanceof JobNode()) {
|
|
170
|
+
if (first) {
|
|
171
|
+
first = false;
|
|
172
|
+
} else
|
|
173
|
+
this_0.jb(', ');
|
|
174
|
+
this_0.ib(node);
|
|
175
|
+
}
|
|
176
|
+
cur = cur.k24_1;
|
|
177
|
+
}
|
|
178
|
+
this_0.jb(']');
|
|
179
|
+
return this_0.toString();
|
|
180
|
+
}
|
|
181
|
+
toString() {
|
|
182
|
+
return get_DEBUG() ? this.u26('Active') : super.toString();
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
initMetadataForClass($, 'NodeList', NodeList, VOID, [LockFreeLinkedListHead(), Incomplete()]);
|
|
186
|
+
NodeListClass = $;
|
|
187
|
+
}
|
|
188
|
+
return NodeListClass;
|
|
189
|
+
}
|
|
190
|
+
var JobNodeClass;
|
|
191
|
+
function JobNode() {
|
|
192
|
+
if (JobNodeClass === VOID) {
|
|
193
|
+
class $ extends LockFreeLinkedListNode() {
|
|
194
|
+
i24() {
|
|
195
|
+
var tmp = this.h24_1;
|
|
196
|
+
if (!(tmp == null))
|
|
197
|
+
return tmp;
|
|
198
|
+
else {
|
|
199
|
+
throwUninitializedPropertyAccessException('job');
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
t1x() {
|
|
203
|
+
return true;
|
|
204
|
+
}
|
|
205
|
+
j24() {
|
|
206
|
+
return null;
|
|
207
|
+
}
|
|
208
|
+
u21() {
|
|
209
|
+
return this.i24().a1z(this);
|
|
210
|
+
}
|
|
211
|
+
toString() {
|
|
212
|
+
return get_classSimpleName(this) + '@' + get_hexAddress(this) + '[job@' + get_hexAddress(this.i24()) + ']';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
initMetadataForClass($, 'JobNode', VOID, VOID, [LockFreeLinkedListNode(), Incomplete()]);
|
|
216
|
+
JobNodeClass = $;
|
|
217
|
+
}
|
|
218
|
+
return JobNodeClass;
|
|
219
|
+
}
|
|
220
|
+
function _set_exceptionsHolder__tqm22h($this, value) {
|
|
221
|
+
$this.z26_1.kotlinx$atomicfu$value = value;
|
|
222
|
+
}
|
|
223
|
+
function _get_exceptionsHolder__nhszp($this) {
|
|
224
|
+
return $this.z26_1.kotlinx$atomicfu$value;
|
|
225
|
+
}
|
|
226
|
+
function allocateList($this) {
|
|
227
|
+
return ArrayList().c1(4);
|
|
228
|
+
}
|
|
229
|
+
function finalizeFinishingState($this, state, proposedUpdate) {
|
|
230
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
231
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
232
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
233
|
+
var tmp0_safe_receiver = proposedUpdate instanceof CompletedExceptionally() ? proposedUpdate : null;
|
|
234
|
+
var proposedException = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.y1x_1;
|
|
235
|
+
var wasCancelling;
|
|
236
|
+
// Inline function 'kotlinx.coroutines.internal.synchronized' call
|
|
237
|
+
// Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
|
|
238
|
+
wasCancelling = state.a27();
|
|
239
|
+
var exceptions = state.b27(proposedException);
|
|
240
|
+
var finalCause = getFinalRootCause($this, state, exceptions);
|
|
241
|
+
if (!(finalCause == null)) {
|
|
242
|
+
addSuppressedExceptions($this, finalCause, exceptions);
|
|
243
|
+
}
|
|
244
|
+
var finalException = finalCause;
|
|
245
|
+
var finalState = finalException == null ? proposedUpdate : finalException === proposedException ? proposedUpdate : new (CompletedExceptionally())(finalException);
|
|
246
|
+
if (!(finalException == null)) {
|
|
247
|
+
var handled = cancelParent($this, finalException) || $this.q1z(finalException);
|
|
248
|
+
if (handled) {
|
|
249
|
+
(finalState instanceof CompletedExceptionally() ? finalState : THROW_CCE()).x22();
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
if (!wasCancelling) {
|
|
253
|
+
$this.n1z(finalException);
|
|
254
|
+
}
|
|
255
|
+
$this.x1x(finalState);
|
|
256
|
+
var casSuccess = $this.m1x_1.atomicfu$compareAndSet(state, boxIncomplete(finalState));
|
|
257
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
258
|
+
completeStateFinalization($this, state, finalState);
|
|
259
|
+
return finalState;
|
|
260
|
+
}
|
|
261
|
+
function getFinalRootCause($this, state, exceptions) {
|
|
262
|
+
if (exceptions.j()) {
|
|
263
|
+
if (state.a27()) {
|
|
264
|
+
// Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
|
|
265
|
+
return JobCancellationException().i27(null == null ? $this.w1x() : null, null, $this);
|
|
266
|
+
}
|
|
267
|
+
return null;
|
|
268
|
+
}
|
|
269
|
+
var tmp$ret$2;
|
|
270
|
+
$l$block: {
|
|
271
|
+
// Inline function 'kotlin.collections.firstOrNull' call
|
|
272
|
+
var _iterator__ex2g4s = exceptions.d1();
|
|
273
|
+
while (_iterator__ex2g4s.e1()) {
|
|
274
|
+
var element = _iterator__ex2g4s.f1();
|
|
275
|
+
if (!(element instanceof CancellationException())) {
|
|
276
|
+
tmp$ret$2 = element;
|
|
277
|
+
break $l$block;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
tmp$ret$2 = null;
|
|
281
|
+
}
|
|
282
|
+
var firstNonCancellation = tmp$ret$2;
|
|
283
|
+
if (!(firstNonCancellation == null))
|
|
284
|
+
return firstNonCancellation;
|
|
285
|
+
var first = exceptions.j1(0);
|
|
286
|
+
if (first instanceof TimeoutCancellationException()) {
|
|
287
|
+
var tmp$ret$4;
|
|
288
|
+
$l$block_0: {
|
|
289
|
+
// Inline function 'kotlin.collections.firstOrNull' call
|
|
290
|
+
var _iterator__ex2g4s_0 = exceptions.d1();
|
|
291
|
+
while (_iterator__ex2g4s_0.e1()) {
|
|
292
|
+
var element_0 = _iterator__ex2g4s_0.f1();
|
|
293
|
+
var tmp;
|
|
294
|
+
if (!(element_0 === first)) {
|
|
295
|
+
tmp = element_0 instanceof TimeoutCancellationException();
|
|
296
|
+
} else {
|
|
297
|
+
tmp = false;
|
|
298
|
+
}
|
|
299
|
+
if (tmp) {
|
|
300
|
+
tmp$ret$4 = element_0;
|
|
301
|
+
break $l$block_0;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
tmp$ret$4 = null;
|
|
305
|
+
}
|
|
306
|
+
var detailedTimeoutException = tmp$ret$4;
|
|
307
|
+
if (!(detailedTimeoutException == null))
|
|
308
|
+
return detailedTimeoutException;
|
|
309
|
+
}
|
|
310
|
+
return first;
|
|
311
|
+
}
|
|
312
|
+
function addSuppressedExceptions($this, rootCause, exceptions) {
|
|
313
|
+
if (exceptions.i1() <= 1)
|
|
314
|
+
return Unit_instance;
|
|
315
|
+
var seenExceptions = identitySet(exceptions.i1());
|
|
316
|
+
var unwrappedCause = unwrap(rootCause);
|
|
317
|
+
var _iterator__ex2g4s = exceptions.d1();
|
|
318
|
+
while (_iterator__ex2g4s.e1()) {
|
|
319
|
+
var exception = _iterator__ex2g4s.f1();
|
|
320
|
+
var unwrapped = unwrap(exception);
|
|
321
|
+
var tmp;
|
|
322
|
+
var tmp_0;
|
|
323
|
+
if (!(unwrapped === rootCause) && !(unwrapped === unwrappedCause)) {
|
|
324
|
+
tmp_0 = !(unwrapped instanceof CancellationException());
|
|
325
|
+
} else {
|
|
326
|
+
tmp_0 = false;
|
|
327
|
+
}
|
|
328
|
+
if (tmp_0) {
|
|
329
|
+
tmp = seenExceptions.m(unwrapped);
|
|
330
|
+
} else {
|
|
331
|
+
tmp = false;
|
|
332
|
+
}
|
|
333
|
+
if (tmp) {
|
|
334
|
+
addSuppressed(rootCause, unwrapped);
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
function tryFinalizeSimpleState($this, state, update) {
|
|
339
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
340
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
341
|
+
if (!$this.m1x_1.atomicfu$compareAndSet(state, boxIncomplete(update)))
|
|
342
|
+
return false;
|
|
343
|
+
$this.n1z(null);
|
|
344
|
+
$this.x1x(update);
|
|
345
|
+
completeStateFinalization($this, state, update);
|
|
346
|
+
return true;
|
|
347
|
+
}
|
|
348
|
+
function completeStateFinalization($this, state, update) {
|
|
349
|
+
var tmp0_safe_receiver = $this.l1y();
|
|
350
|
+
if (tmp0_safe_receiver == null)
|
|
351
|
+
null;
|
|
352
|
+
else {
|
|
353
|
+
// Inline function 'kotlin.let' call
|
|
354
|
+
tmp0_safe_receiver.u21();
|
|
355
|
+
$this.k1y(NonDisposableHandle_instance);
|
|
356
|
+
}
|
|
357
|
+
var tmp1_safe_receiver = update instanceof CompletedExceptionally() ? update : null;
|
|
358
|
+
var cause = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.y1x_1;
|
|
359
|
+
if (state instanceof JobNode()) {
|
|
360
|
+
try {
|
|
361
|
+
state.t21(cause);
|
|
362
|
+
} catch ($p) {
|
|
363
|
+
if ($p instanceof Error) {
|
|
364
|
+
var ex = $p;
|
|
365
|
+
$this.e1y(CompletionHandlerException().o22('Exception in completion handler ' + state.toString() + ' for ' + $this.toString(), ex));
|
|
366
|
+
} else {
|
|
367
|
+
throw $p;
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
} else {
|
|
371
|
+
var tmp2_safe_receiver = state.j24();
|
|
372
|
+
if (tmp2_safe_receiver == null)
|
|
373
|
+
null;
|
|
374
|
+
else {
|
|
375
|
+
notifyCompletion($this, tmp2_safe_receiver, cause);
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
function notifyCancelling($this, list, cause) {
|
|
380
|
+
$this.n1z(cause);
|
|
381
|
+
list.v26(4);
|
|
382
|
+
// Inline function 'kotlinx.coroutines.JobSupport.notifyHandlers' call
|
|
383
|
+
var exception = null;
|
|
384
|
+
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
|
|
385
|
+
var cur = list.k24_1;
|
|
386
|
+
while (!equals(cur, list)) {
|
|
387
|
+
var node = cur;
|
|
388
|
+
var tmp;
|
|
389
|
+
if (node instanceof JobNode()) {
|
|
390
|
+
tmp = node.d24();
|
|
391
|
+
} else {
|
|
392
|
+
tmp = false;
|
|
393
|
+
}
|
|
394
|
+
if (tmp) {
|
|
395
|
+
try {
|
|
396
|
+
node.t21(cause);
|
|
397
|
+
} catch ($p) {
|
|
398
|
+
if ($p instanceof Error) {
|
|
399
|
+
var ex = $p;
|
|
400
|
+
var tmp0_safe_receiver = exception;
|
|
401
|
+
var tmp_0;
|
|
402
|
+
if (tmp0_safe_receiver == null) {
|
|
403
|
+
tmp_0 = null;
|
|
404
|
+
} else {
|
|
405
|
+
// Inline function 'kotlin.apply' call
|
|
406
|
+
addSuppressed(tmp0_safe_receiver, ex);
|
|
407
|
+
tmp_0 = tmp0_safe_receiver;
|
|
408
|
+
}
|
|
409
|
+
if (tmp_0 == null) {
|
|
410
|
+
// Inline function 'kotlin.run' call
|
|
411
|
+
exception = CompletionHandlerException().o22('Exception in completion handler ' + node.toString() + ' for ' + $this.toString(), ex);
|
|
412
|
+
}
|
|
413
|
+
} else {
|
|
414
|
+
throw $p;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
cur = cur.k24_1;
|
|
419
|
+
}
|
|
420
|
+
var tmp0_safe_receiver_0 = exception;
|
|
421
|
+
if (tmp0_safe_receiver_0 == null)
|
|
422
|
+
null;
|
|
423
|
+
else {
|
|
424
|
+
// Inline function 'kotlin.let' call
|
|
425
|
+
$this.e1y(tmp0_safe_receiver_0);
|
|
426
|
+
}
|
|
427
|
+
cancelParent($this, cause);
|
|
428
|
+
}
|
|
429
|
+
function cancelParent($this, cause) {
|
|
430
|
+
if ($this.o1z())
|
|
431
|
+
return true;
|
|
432
|
+
var isCancellation = cause instanceof CancellationException();
|
|
433
|
+
var parent = $this.l1y();
|
|
434
|
+
if (parent === null || parent === NonDisposableHandle_instance) {
|
|
435
|
+
return isCancellation;
|
|
436
|
+
}
|
|
437
|
+
return parent.g1z(cause) || isCancellation;
|
|
438
|
+
}
|
|
439
|
+
function notifyCompletion($this, _this__u8e3s4, cause) {
|
|
440
|
+
_this__u8e3s4.v26(1);
|
|
441
|
+
// Inline function 'kotlinx.coroutines.JobSupport.notifyHandlers' call
|
|
442
|
+
var exception = null;
|
|
443
|
+
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
|
|
444
|
+
var cur = _this__u8e3s4.k24_1;
|
|
445
|
+
while (!equals(cur, _this__u8e3s4)) {
|
|
446
|
+
var node = cur;
|
|
447
|
+
var tmp;
|
|
448
|
+
if (node instanceof JobNode()) {
|
|
449
|
+
tmp = true;
|
|
450
|
+
} else {
|
|
451
|
+
tmp = false;
|
|
452
|
+
}
|
|
453
|
+
if (tmp) {
|
|
454
|
+
try {
|
|
455
|
+
node.t21(cause);
|
|
456
|
+
} catch ($p) {
|
|
457
|
+
if ($p instanceof Error) {
|
|
458
|
+
var ex = $p;
|
|
459
|
+
var tmp0_safe_receiver = exception;
|
|
460
|
+
var tmp_0;
|
|
461
|
+
if (tmp0_safe_receiver == null) {
|
|
462
|
+
tmp_0 = null;
|
|
463
|
+
} else {
|
|
464
|
+
// Inline function 'kotlin.apply' call
|
|
465
|
+
addSuppressed(tmp0_safe_receiver, ex);
|
|
466
|
+
tmp_0 = tmp0_safe_receiver;
|
|
467
|
+
}
|
|
468
|
+
if (tmp_0 == null) {
|
|
469
|
+
// Inline function 'kotlin.run' call
|
|
470
|
+
exception = CompletionHandlerException().o22('Exception in completion handler ' + node.toString() + ' for ' + $this.toString(), ex);
|
|
471
|
+
}
|
|
472
|
+
} else {
|
|
473
|
+
throw $p;
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
cur = cur.k24_1;
|
|
478
|
+
}
|
|
479
|
+
var tmp0_safe_receiver_0 = exception;
|
|
480
|
+
if (tmp0_safe_receiver_0 == null)
|
|
481
|
+
null;
|
|
482
|
+
else {
|
|
483
|
+
// Inline function 'kotlin.let' call
|
|
484
|
+
$this.e1y(tmp0_safe_receiver_0);
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
function startInternal($this, state) {
|
|
488
|
+
if (state instanceof Empty()) {
|
|
489
|
+
if (state.q26_1)
|
|
490
|
+
return 0;
|
|
491
|
+
if (!$this.m1x_1.atomicfu$compareAndSet(state, get_EMPTY_ACTIVE()))
|
|
492
|
+
return -1;
|
|
493
|
+
$this.r1y();
|
|
494
|
+
return 1;
|
|
495
|
+
} else {
|
|
496
|
+
if (state instanceof InactiveNodeList()) {
|
|
497
|
+
if (!$this.m1x_1.atomicfu$compareAndSet(state, state.j27_1))
|
|
498
|
+
return -1;
|
|
499
|
+
$this.r1y();
|
|
500
|
+
return 1;
|
|
501
|
+
} else {
|
|
502
|
+
return 0;
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
function promoteEmptyToNodeList($this, state) {
|
|
507
|
+
var list = new (NodeList())();
|
|
508
|
+
var update = state.q26_1 ? list : new (InactiveNodeList())(list);
|
|
509
|
+
$this.m1x_1.atomicfu$compareAndSet(state, update);
|
|
510
|
+
}
|
|
511
|
+
function promoteSingleToNodeList($this, state) {
|
|
512
|
+
state.p24(new (NodeList())());
|
|
513
|
+
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.nextNode' call
|
|
514
|
+
var list = state.k24_1;
|
|
515
|
+
$this.m1x_1.atomicfu$compareAndSet(state, list);
|
|
516
|
+
}
|
|
517
|
+
function joinInternal($this) {
|
|
518
|
+
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
519
|
+
while (true) {
|
|
520
|
+
var state = $this.n1y();
|
|
521
|
+
if (!(!(state == null) ? isInterface(state, Incomplete()) : false))
|
|
522
|
+
return false;
|
|
523
|
+
if (startInternal($this, state) >= 0)
|
|
524
|
+
return true;
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
function joinSuspend($this, $completion) {
|
|
528
|
+
var cancellable = new (CancellableContinuationImpl())(intercepted($completion), 1);
|
|
529
|
+
cancellable.a23();
|
|
530
|
+
disposeOnCancellation(cancellable, invokeOnCompletion($this, VOID, new (ResumeOnCompletion())(cancellable)));
|
|
531
|
+
return cancellable.b20();
|
|
532
|
+
}
|
|
533
|
+
function cancelMakeCompleting($this, cause) {
|
|
534
|
+
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
535
|
+
while (true) {
|
|
536
|
+
var state = $this.n1y();
|
|
537
|
+
var tmp;
|
|
538
|
+
if (!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
|
|
539
|
+
tmp = true;
|
|
540
|
+
} else {
|
|
541
|
+
var tmp_0;
|
|
542
|
+
if (state instanceof Finishing()) {
|
|
543
|
+
tmp_0 = state.k27();
|
|
544
|
+
} else {
|
|
545
|
+
tmp_0 = false;
|
|
546
|
+
}
|
|
547
|
+
tmp = tmp_0;
|
|
548
|
+
}
|
|
549
|
+
if (tmp) {
|
|
550
|
+
return get_COMPLETING_ALREADY();
|
|
551
|
+
}
|
|
552
|
+
var proposedUpdate = new (CompletedExceptionally())(createCauseException($this, cause));
|
|
553
|
+
var finalState = tryMakeCompleting($this, state, proposedUpdate);
|
|
554
|
+
if (!(finalState === get_COMPLETING_RETRY()))
|
|
555
|
+
return finalState;
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
function createCauseException($this, cause) {
|
|
559
|
+
var tmp;
|
|
560
|
+
if (cause == null ? true : cause instanceof Error) {
|
|
561
|
+
var tmp_0;
|
|
562
|
+
if (cause == null) {
|
|
563
|
+
// Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
|
|
564
|
+
tmp_0 = JobCancellationException().i27(null == null ? $this.w1x() : null, null, $this);
|
|
565
|
+
} else {
|
|
566
|
+
tmp_0 = cause;
|
|
567
|
+
}
|
|
568
|
+
tmp = tmp_0;
|
|
569
|
+
} else {
|
|
570
|
+
tmp = ((!(cause == null) ? isInterface(cause, ParentJob()) : false) ? cause : THROW_CCE()).j1z();
|
|
571
|
+
}
|
|
572
|
+
return tmp;
|
|
573
|
+
}
|
|
574
|
+
function makeCancelling($this, cause) {
|
|
575
|
+
var causeExceptionCache = null;
|
|
576
|
+
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
577
|
+
while (true) {
|
|
578
|
+
var tmp0 = $this.n1y();
|
|
579
|
+
$l$block: {
|
|
580
|
+
if (tmp0 instanceof Finishing()) {
|
|
581
|
+
// Inline function 'kotlinx.coroutines.internal.synchronized' call
|
|
582
|
+
// Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
|
|
583
|
+
if (tmp0.l27())
|
|
584
|
+
return get_TOO_LATE_TO_CANCEL();
|
|
585
|
+
var wasCancelling = tmp0.a27();
|
|
586
|
+
if (!(cause == null) || !wasCancelling) {
|
|
587
|
+
var tmp0_elvis_lhs = causeExceptionCache;
|
|
588
|
+
var tmp;
|
|
589
|
+
if (tmp0_elvis_lhs == null) {
|
|
590
|
+
// Inline function 'kotlin.also' call
|
|
591
|
+
var this_0 = createCauseException($this, cause);
|
|
592
|
+
causeExceptionCache = this_0;
|
|
593
|
+
tmp = this_0;
|
|
594
|
+
} else {
|
|
595
|
+
tmp = tmp0_elvis_lhs;
|
|
596
|
+
}
|
|
597
|
+
var causeException = tmp;
|
|
598
|
+
tmp0.m27(causeException);
|
|
599
|
+
}
|
|
600
|
+
// Inline function 'kotlin.takeIf' call
|
|
601
|
+
var this_1 = tmp0.n27();
|
|
602
|
+
var tmp_0;
|
|
603
|
+
if (!wasCancelling) {
|
|
604
|
+
tmp_0 = this_1;
|
|
605
|
+
} else {
|
|
606
|
+
tmp_0 = null;
|
|
607
|
+
}
|
|
608
|
+
var notifyRootCause = tmp_0;
|
|
609
|
+
if (notifyRootCause == null)
|
|
610
|
+
null;
|
|
611
|
+
else {
|
|
612
|
+
// Inline function 'kotlin.let' call
|
|
613
|
+
notifyCancelling($this, tmp0.w26_1, notifyRootCause);
|
|
614
|
+
}
|
|
615
|
+
return get_COMPLETING_ALREADY();
|
|
616
|
+
} else {
|
|
617
|
+
if (!(tmp0 == null) ? isInterface(tmp0, Incomplete()) : false) {
|
|
618
|
+
var tmp2_elvis_lhs = causeExceptionCache;
|
|
619
|
+
var tmp_1;
|
|
620
|
+
if (tmp2_elvis_lhs == null) {
|
|
621
|
+
// Inline function 'kotlin.also' call
|
|
622
|
+
var this_2 = createCauseException($this, cause);
|
|
623
|
+
causeExceptionCache = this_2;
|
|
624
|
+
tmp_1 = this_2;
|
|
625
|
+
} else {
|
|
626
|
+
tmp_1 = tmp2_elvis_lhs;
|
|
627
|
+
}
|
|
628
|
+
var causeException_0 = tmp_1;
|
|
629
|
+
if (tmp0.t1x()) {
|
|
630
|
+
if (tryMakeCancelling($this, tmp0, causeException_0))
|
|
631
|
+
return get_COMPLETING_ALREADY();
|
|
632
|
+
} else {
|
|
633
|
+
var finalState = tryMakeCompleting($this, tmp0, new (CompletedExceptionally())(causeException_0));
|
|
634
|
+
if (finalState === get_COMPLETING_ALREADY()) {
|
|
635
|
+
// Inline function 'kotlin.error' call
|
|
636
|
+
var message = 'Cannot happen in ' + toString(tmp0);
|
|
637
|
+
throw IllegalStateException().o4(toString(message));
|
|
638
|
+
} else if (finalState === get_COMPLETING_RETRY()) {
|
|
639
|
+
break $l$block;
|
|
640
|
+
} else
|
|
641
|
+
return finalState;
|
|
642
|
+
}
|
|
643
|
+
} else {
|
|
644
|
+
return get_TOO_LATE_TO_CANCEL();
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
function getOrPromoteCancellingList($this, state) {
|
|
651
|
+
var tmp0_elvis_lhs = state.j24();
|
|
652
|
+
var tmp;
|
|
653
|
+
if (tmp0_elvis_lhs == null) {
|
|
654
|
+
var tmp_0;
|
|
655
|
+
if (state instanceof Empty()) {
|
|
656
|
+
tmp_0 = new (NodeList())();
|
|
657
|
+
} else {
|
|
658
|
+
if (state instanceof JobNode()) {
|
|
659
|
+
promoteSingleToNodeList($this, state);
|
|
660
|
+
tmp_0 = null;
|
|
661
|
+
} else {
|
|
662
|
+
var message = 'State should have list: ' + toString(state);
|
|
663
|
+
throw IllegalStateException().o4(toString(message));
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
tmp = tmp_0;
|
|
667
|
+
} else {
|
|
668
|
+
tmp = tmp0_elvis_lhs;
|
|
669
|
+
}
|
|
670
|
+
return tmp;
|
|
671
|
+
}
|
|
672
|
+
function tryMakeCancelling($this, state, rootCause) {
|
|
673
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
674
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
675
|
+
var tmp0_elvis_lhs = getOrPromoteCancellingList($this, state);
|
|
676
|
+
var tmp;
|
|
677
|
+
if (tmp0_elvis_lhs == null) {
|
|
678
|
+
return false;
|
|
679
|
+
} else {
|
|
680
|
+
tmp = tmp0_elvis_lhs;
|
|
681
|
+
}
|
|
682
|
+
var list = tmp;
|
|
683
|
+
var cancelling = new (Finishing())(list, false, rootCause);
|
|
684
|
+
if (!$this.m1x_1.atomicfu$compareAndSet(state, cancelling))
|
|
685
|
+
return false;
|
|
686
|
+
notifyCancelling($this, list, rootCause);
|
|
687
|
+
return true;
|
|
688
|
+
}
|
|
689
|
+
function tryMakeCompleting($this, state, proposedUpdate) {
|
|
690
|
+
if (!(!(state == null) ? isInterface(state, Incomplete()) : false))
|
|
691
|
+
return get_COMPLETING_ALREADY();
|
|
692
|
+
var tmp;
|
|
693
|
+
var tmp_0;
|
|
694
|
+
var tmp_1;
|
|
695
|
+
if (state instanceof Empty()) {
|
|
696
|
+
tmp_1 = true;
|
|
697
|
+
} else {
|
|
698
|
+
tmp_1 = state instanceof JobNode();
|
|
699
|
+
}
|
|
700
|
+
if (tmp_1) {
|
|
701
|
+
tmp_0 = !(state instanceof ChildHandleNode());
|
|
702
|
+
} else {
|
|
703
|
+
tmp_0 = false;
|
|
704
|
+
}
|
|
705
|
+
if (tmp_0) {
|
|
706
|
+
tmp = !(proposedUpdate instanceof CompletedExceptionally());
|
|
707
|
+
} else {
|
|
708
|
+
tmp = false;
|
|
709
|
+
}
|
|
710
|
+
if (tmp) {
|
|
711
|
+
if (tryFinalizeSimpleState($this, state, proposedUpdate)) {
|
|
712
|
+
return proposedUpdate;
|
|
713
|
+
}
|
|
714
|
+
return get_COMPLETING_RETRY();
|
|
715
|
+
}
|
|
716
|
+
return tryMakeCompletingSlowPath($this, state, proposedUpdate);
|
|
717
|
+
}
|
|
718
|
+
function tryMakeCompletingSlowPath($this, state, proposedUpdate) {
|
|
719
|
+
var tmp0_elvis_lhs = getOrPromoteCancellingList($this, state);
|
|
720
|
+
var tmp;
|
|
721
|
+
if (tmp0_elvis_lhs == null) {
|
|
722
|
+
return get_COMPLETING_RETRY();
|
|
723
|
+
} else {
|
|
724
|
+
tmp = tmp0_elvis_lhs;
|
|
725
|
+
}
|
|
726
|
+
var list = tmp;
|
|
727
|
+
var tmp1_elvis_lhs = state instanceof Finishing() ? state : null;
|
|
728
|
+
var finishing = tmp1_elvis_lhs == null ? new (Finishing())(list, false, null) : tmp1_elvis_lhs;
|
|
729
|
+
var notifyRootCause;
|
|
730
|
+
// Inline function 'kotlinx.coroutines.internal.synchronized' call
|
|
731
|
+
// Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
|
|
732
|
+
if (finishing.k27())
|
|
733
|
+
return get_COMPLETING_ALREADY();
|
|
734
|
+
finishing.o27(true);
|
|
735
|
+
if (!(finishing === state)) {
|
|
736
|
+
if (!$this.m1x_1.atomicfu$compareAndSet(state, finishing))
|
|
737
|
+
return get_COMPLETING_RETRY();
|
|
738
|
+
}
|
|
739
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
740
|
+
var wasCancelling = finishing.a27();
|
|
741
|
+
var tmp0_safe_receiver = proposedUpdate instanceof CompletedExceptionally() ? proposedUpdate : null;
|
|
742
|
+
if (tmp0_safe_receiver == null)
|
|
743
|
+
null;
|
|
744
|
+
else {
|
|
745
|
+
// Inline function 'kotlin.let' call
|
|
746
|
+
finishing.m27(tmp0_safe_receiver.y1x_1);
|
|
747
|
+
}
|
|
748
|
+
// Inline function 'kotlin.takeIf' call
|
|
749
|
+
var this_0 = finishing.n27();
|
|
750
|
+
var tmp_0;
|
|
751
|
+
if (!wasCancelling) {
|
|
752
|
+
tmp_0 = this_0;
|
|
753
|
+
} else {
|
|
754
|
+
tmp_0 = null;
|
|
755
|
+
}
|
|
756
|
+
notifyRootCause = tmp_0;
|
|
757
|
+
if (notifyRootCause == null)
|
|
758
|
+
null;
|
|
759
|
+
else {
|
|
760
|
+
// Inline function 'kotlin.let' call
|
|
761
|
+
notifyCancelling($this, list, notifyRootCause);
|
|
762
|
+
}
|
|
763
|
+
var child = nextChild($this, list);
|
|
764
|
+
if (!(child == null) && tryWaitForChild($this, finishing, child, proposedUpdate))
|
|
765
|
+
return get_COMPLETING_WAITING_CHILDREN();
|
|
766
|
+
list.v26(2);
|
|
767
|
+
var anotherChild = nextChild($this, list);
|
|
768
|
+
if (!(anotherChild == null) && tryWaitForChild($this, finishing, anotherChild, proposedUpdate))
|
|
769
|
+
return get_COMPLETING_WAITING_CHILDREN();
|
|
770
|
+
return finalizeFinishingState($this, finishing, proposedUpdate);
|
|
771
|
+
}
|
|
772
|
+
function _get_exceptionOrNull__b3j7js($this, _this__u8e3s4) {
|
|
773
|
+
var tmp0_safe_receiver = _this__u8e3s4 instanceof CompletedExceptionally() ? _this__u8e3s4 : null;
|
|
774
|
+
return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.y1x_1;
|
|
775
|
+
}
|
|
776
|
+
function tryWaitForChild($this, state, child, proposedUpdate) {
|
|
777
|
+
var $this_0 = $this;
|
|
778
|
+
var state_0 = state;
|
|
779
|
+
var child_0 = child;
|
|
780
|
+
var proposedUpdate_0 = proposedUpdate;
|
|
781
|
+
$l$1: do {
|
|
782
|
+
$l$0: do {
|
|
783
|
+
var handle = invokeOnCompletion(child_0.t27_1, false, new (ChildCompletion())($this_0, state_0, child_0, proposedUpdate_0));
|
|
784
|
+
if (!(handle === NonDisposableHandle_instance))
|
|
785
|
+
return true;
|
|
786
|
+
var tmp0_elvis_lhs = nextChild($this_0, child_0);
|
|
787
|
+
var tmp;
|
|
788
|
+
if (tmp0_elvis_lhs == null) {
|
|
789
|
+
return false;
|
|
790
|
+
} else {
|
|
791
|
+
tmp = tmp0_elvis_lhs;
|
|
792
|
+
}
|
|
793
|
+
var nextChild_0 = tmp;
|
|
794
|
+
var tmp0 = $this_0;
|
|
795
|
+
var tmp1 = state_0;
|
|
796
|
+
var tmp3 = proposedUpdate_0;
|
|
797
|
+
$this_0 = tmp0;
|
|
798
|
+
state_0 = tmp1;
|
|
799
|
+
child_0 = nextChild_0;
|
|
800
|
+
proposedUpdate_0 = tmp3;
|
|
801
|
+
continue $l$0;
|
|
802
|
+
}
|
|
803
|
+
while (false);
|
|
804
|
+
}
|
|
805
|
+
while (true);
|
|
806
|
+
}
|
|
807
|
+
function continueCompleting($this, state, lastChild, proposedUpdate) {
|
|
808
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
809
|
+
var waitChild = nextChild($this, lastChild);
|
|
810
|
+
if (!(waitChild == null) && tryWaitForChild($this, state, waitChild, proposedUpdate))
|
|
811
|
+
return Unit_instance;
|
|
812
|
+
state.w26_1.v26(2);
|
|
813
|
+
var waitChildAgain = nextChild($this, lastChild);
|
|
814
|
+
if (!(waitChildAgain == null) && tryWaitForChild($this, state, waitChildAgain, proposedUpdate)) {
|
|
815
|
+
return Unit_instance;
|
|
816
|
+
}
|
|
817
|
+
var finalState = finalizeFinishingState($this, state, proposedUpdate);
|
|
818
|
+
$this.d1y(finalState);
|
|
819
|
+
}
|
|
820
|
+
function nextChild($this, _this__u8e3s4) {
|
|
821
|
+
var cur = _this__u8e3s4;
|
|
822
|
+
$l$loop: while (true) {
|
|
823
|
+
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.isRemoved' call
|
|
824
|
+
if (!cur.m24_1) {
|
|
825
|
+
break $l$loop;
|
|
826
|
+
}
|
|
827
|
+
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.prevNode' call
|
|
828
|
+
cur = cur.l24_1;
|
|
829
|
+
}
|
|
830
|
+
$l$loop_0: while (true) {
|
|
831
|
+
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.nextNode' call
|
|
832
|
+
cur = cur.k24_1;
|
|
833
|
+
// Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.isRemoved' call
|
|
834
|
+
if (cur.m24_1)
|
|
835
|
+
continue $l$loop_0;
|
|
836
|
+
if (cur instanceof ChildHandleNode())
|
|
837
|
+
return cur;
|
|
838
|
+
if (cur instanceof NodeList())
|
|
839
|
+
return null;
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
function stateString($this, state) {
|
|
843
|
+
var tmp;
|
|
844
|
+
if (state instanceof Finishing()) {
|
|
845
|
+
tmp = state.a27() ? 'Cancelling' : state.k27() ? 'Completing' : 'Active';
|
|
846
|
+
} else {
|
|
847
|
+
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
848
|
+
tmp = state.t1x() ? 'Active' : 'New';
|
|
849
|
+
} else {
|
|
850
|
+
if (state instanceof CompletedExceptionally()) {
|
|
851
|
+
tmp = 'Cancelled';
|
|
852
|
+
} else {
|
|
853
|
+
tmp = 'Completed';
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
}
|
|
857
|
+
return tmp;
|
|
858
|
+
}
|
|
859
|
+
var FinishingClass;
|
|
860
|
+
function Finishing() {
|
|
861
|
+
if (FinishingClass === VOID) {
|
|
862
|
+
class $ extends SynchronizedObject() {
|
|
863
|
+
constructor(list, isCompleting, rootCause) {
|
|
864
|
+
super();
|
|
865
|
+
this.w26_1 = list;
|
|
866
|
+
this.x26_1 = atomic$boolean$1(isCompleting);
|
|
867
|
+
this.y26_1 = atomic$ref$1(rootCause);
|
|
868
|
+
this.z26_1 = atomic$ref$1(null);
|
|
869
|
+
}
|
|
870
|
+
j24() {
|
|
871
|
+
return this.w26_1;
|
|
872
|
+
}
|
|
873
|
+
o27(value) {
|
|
874
|
+
this.x26_1.kotlinx$atomicfu$value = value;
|
|
875
|
+
}
|
|
876
|
+
k27() {
|
|
877
|
+
return this.x26_1.kotlinx$atomicfu$value;
|
|
878
|
+
}
|
|
879
|
+
u27(value) {
|
|
880
|
+
this.y26_1.kotlinx$atomicfu$value = value;
|
|
881
|
+
}
|
|
882
|
+
n27() {
|
|
883
|
+
return this.y26_1.kotlinx$atomicfu$value;
|
|
884
|
+
}
|
|
885
|
+
l27() {
|
|
886
|
+
return _get_exceptionsHolder__nhszp(this) === get_SEALED();
|
|
887
|
+
}
|
|
888
|
+
a27() {
|
|
889
|
+
return !(this.n27() == null);
|
|
890
|
+
}
|
|
891
|
+
t1x() {
|
|
892
|
+
return this.n27() == null;
|
|
893
|
+
}
|
|
894
|
+
b27(proposedException) {
|
|
895
|
+
var eh = _get_exceptionsHolder__nhszp(this);
|
|
896
|
+
var tmp;
|
|
897
|
+
if (eh == null) {
|
|
898
|
+
tmp = allocateList(this);
|
|
899
|
+
} else {
|
|
900
|
+
if (eh instanceof Error) {
|
|
901
|
+
// Inline function 'kotlin.also' call
|
|
902
|
+
var this_0 = allocateList(this);
|
|
903
|
+
this_0.m(eh);
|
|
904
|
+
tmp = this_0;
|
|
905
|
+
} else {
|
|
906
|
+
if (eh instanceof ArrayList()) {
|
|
907
|
+
tmp = eh instanceof ArrayList() ? eh : THROW_CCE();
|
|
908
|
+
} else {
|
|
909
|
+
var message = 'State is ' + toString_0(eh);
|
|
910
|
+
throw IllegalStateException().o4(toString(message));
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
var list = tmp;
|
|
915
|
+
var rootCause = this.n27();
|
|
916
|
+
if (rootCause == null)
|
|
917
|
+
null;
|
|
918
|
+
else {
|
|
919
|
+
// Inline function 'kotlin.let' call
|
|
920
|
+
list.b3(0, rootCause);
|
|
921
|
+
}
|
|
922
|
+
if (!(proposedException == null) && !equals(proposedException, rootCause)) {
|
|
923
|
+
list.m(proposedException);
|
|
924
|
+
}
|
|
925
|
+
_set_exceptionsHolder__tqm22h(this, get_SEALED());
|
|
926
|
+
return list;
|
|
927
|
+
}
|
|
928
|
+
m27(exception) {
|
|
929
|
+
var rootCause = this.n27();
|
|
930
|
+
if (rootCause == null) {
|
|
931
|
+
this.u27(exception);
|
|
932
|
+
return Unit_instance;
|
|
933
|
+
}
|
|
934
|
+
if (exception === rootCause)
|
|
935
|
+
return Unit_instance;
|
|
936
|
+
var eh = _get_exceptionsHolder__nhszp(this);
|
|
937
|
+
if (eh == null) {
|
|
938
|
+
_set_exceptionsHolder__tqm22h(this, exception);
|
|
939
|
+
} else {
|
|
940
|
+
if (eh instanceof Error) {
|
|
941
|
+
if (exception === eh)
|
|
942
|
+
return Unit_instance;
|
|
943
|
+
// Inline function 'kotlin.apply' call
|
|
944
|
+
var this_0 = allocateList(this);
|
|
945
|
+
this_0.m(eh);
|
|
946
|
+
this_0.m(exception);
|
|
947
|
+
_set_exceptionsHolder__tqm22h(this, this_0);
|
|
948
|
+
} else {
|
|
949
|
+
if (eh instanceof ArrayList()) {
|
|
950
|
+
(eh instanceof ArrayList() ? eh : THROW_CCE()).m(exception);
|
|
951
|
+
} else {
|
|
952
|
+
// Inline function 'kotlin.error' call
|
|
953
|
+
var message = 'State is ' + toString_0(eh);
|
|
954
|
+
throw IllegalStateException().o4(toString(message));
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
toString() {
|
|
960
|
+
return 'Finishing[cancelling=' + this.a27() + ', completing=' + this.k27() + ', rootCause=' + toString_0(this.n27()) + ', exceptions=' + toString_0(_get_exceptionsHolder__nhszp(this)) + ', list=' + this.w26_1.toString() + ']';
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
initMetadataForClass($, 'Finishing', VOID, VOID, [SynchronizedObject(), Incomplete()]);
|
|
964
|
+
FinishingClass = $;
|
|
965
|
+
}
|
|
966
|
+
return FinishingClass;
|
|
967
|
+
}
|
|
968
|
+
var ChildCompletionClass;
|
|
969
|
+
function ChildCompletion() {
|
|
970
|
+
if (ChildCompletionClass === VOID) {
|
|
971
|
+
class $ extends JobNode() {
|
|
972
|
+
constructor(parent, state, child, proposedUpdate) {
|
|
973
|
+
super();
|
|
974
|
+
this.z27_1 = parent;
|
|
975
|
+
this.a28_1 = state;
|
|
976
|
+
this.b28_1 = child;
|
|
977
|
+
this.c28_1 = proposedUpdate;
|
|
978
|
+
}
|
|
979
|
+
d24() {
|
|
980
|
+
return false;
|
|
981
|
+
}
|
|
982
|
+
t21(cause) {
|
|
983
|
+
continueCompleting(this.z27_1, this.a28_1, this.b28_1, this.c28_1);
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
initMetadataForClass($, 'ChildCompletion');
|
|
987
|
+
ChildCompletionClass = $;
|
|
988
|
+
}
|
|
989
|
+
return ChildCompletionClass;
|
|
990
|
+
}
|
|
991
|
+
var AwaitContinuationClass;
|
|
992
|
+
function AwaitContinuation() {
|
|
993
|
+
if (AwaitContinuationClass === VOID) {
|
|
994
|
+
class $ extends CancellableContinuationImpl() {
|
|
995
|
+
constructor(delegate, job) {
|
|
996
|
+
super(delegate, 1);
|
|
997
|
+
this.j28_1 = job;
|
|
998
|
+
}
|
|
999
|
+
h23(parent) {
|
|
1000
|
+
var state = this.j28_1.n1y();
|
|
1001
|
+
if (state instanceof Finishing()) {
|
|
1002
|
+
var tmp0_safe_receiver = state.n27();
|
|
1003
|
+
if (tmp0_safe_receiver == null)
|
|
1004
|
+
null;
|
|
1005
|
+
else {
|
|
1006
|
+
// Inline function 'kotlin.let' call
|
|
1007
|
+
return tmp0_safe_receiver;
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
if (state instanceof CompletedExceptionally())
|
|
1011
|
+
return state.y1x_1;
|
|
1012
|
+
return parent.s1y();
|
|
1013
|
+
}
|
|
1014
|
+
t23() {
|
|
1015
|
+
return 'AwaitContinuation';
|
|
1016
|
+
}
|
|
1017
|
+
}
|
|
1018
|
+
initMetadataForClass($, 'AwaitContinuation');
|
|
1019
|
+
AwaitContinuationClass = $;
|
|
1020
|
+
}
|
|
1021
|
+
return AwaitContinuationClass;
|
|
1022
|
+
}
|
|
1023
|
+
function awaitSuspend($this, $completion) {
|
|
1024
|
+
var cont = new (AwaitContinuation())(intercepted($completion), $this);
|
|
1025
|
+
cont.a23();
|
|
1026
|
+
disposeOnCancellation(cont, invokeOnCompletion($this, VOID, new (ResumeAwaitOnCompletion())(cont)));
|
|
1027
|
+
return cont.b20();
|
|
1028
|
+
}
|
|
1029
|
+
var JobSupport$_get_children_$slambda_k839f8Class;
|
|
1030
|
+
function JobSupport$_get_children_$slambda_k839f8() {
|
|
1031
|
+
if (JobSupport$_get_children_$slambda_k839f8Class === VOID) {
|
|
1032
|
+
class $ extends CoroutineImpl() {
|
|
1033
|
+
constructor(this$0, resultContinuation, $box) {
|
|
1034
|
+
if ($box === VOID)
|
|
1035
|
+
$box = {};
|
|
1036
|
+
$box.s28_1 = this$0;
|
|
1037
|
+
super(resultContinuation, $box);
|
|
1038
|
+
}
|
|
1039
|
+
g29($this$sequence, $completion) {
|
|
1040
|
+
var tmp = this.h29($this$sequence, $completion);
|
|
1041
|
+
tmp.cc_1 = Unit_instance;
|
|
1042
|
+
tmp.dc_1 = null;
|
|
1043
|
+
return tmp.ic();
|
|
1044
|
+
}
|
|
1045
|
+
kd(p1, $completion) {
|
|
1046
|
+
return this.g29(p1 instanceof SequenceScope() ? p1 : THROW_CCE(), $completion);
|
|
1047
|
+
}
|
|
1048
|
+
ic() {
|
|
1049
|
+
var suspendResult = this.cc_1;
|
|
1050
|
+
$sm: do
|
|
1051
|
+
try {
|
|
1052
|
+
var tmp = this.ac_1;
|
|
1053
|
+
switch (tmp) {
|
|
1054
|
+
case 0:
|
|
1055
|
+
this.bc_1 = 8;
|
|
1056
|
+
this.u28_1 = this.s28_1.n1y();
|
|
1057
|
+
var tmp_0 = this.u28_1;
|
|
1058
|
+
if (tmp_0 instanceof ChildHandleNode()) {
|
|
1059
|
+
this.ac_1 = 6;
|
|
1060
|
+
suspendResult = this.t28_1.ml(this.u28_1.t27_1, this);
|
|
1061
|
+
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1062
|
+
return suspendResult;
|
|
1063
|
+
}
|
|
1064
|
+
continue $sm;
|
|
1065
|
+
} else {
|
|
1066
|
+
var tmp_1 = this.u28_1;
|
|
1067
|
+
if (!(tmp_1 == null) ? isInterface(tmp_1, Incomplete()) : false) {
|
|
1068
|
+
this.v28_1 = this.u28_1.j24();
|
|
1069
|
+
if (this.v28_1 == null) {
|
|
1070
|
+
this.w28_1 = null;
|
|
1071
|
+
this.ac_1 = 5;
|
|
1072
|
+
continue $sm;
|
|
1073
|
+
} else {
|
|
1074
|
+
var tmp_2 = this;
|
|
1075
|
+
tmp_2.x28_1 = this.v28_1;
|
|
1076
|
+
this.y28_1 = this.x28_1;
|
|
1077
|
+
var tmp_3 = this;
|
|
1078
|
+
tmp_3.z28_1 = this.y28_1;
|
|
1079
|
+
this.a29_1 = this.z28_1;
|
|
1080
|
+
var tmp_4 = this;
|
|
1081
|
+
tmp_4.b29_1 = this.a29_1;
|
|
1082
|
+
this.c29_1 = this.b29_1;
|
|
1083
|
+
this.d29_1 = this.c29_1.k24_1;
|
|
1084
|
+
this.ac_1 = 1;
|
|
1085
|
+
continue $sm;
|
|
1086
|
+
}
|
|
1087
|
+
} else {
|
|
1088
|
+
this.ac_1 = 7;
|
|
1089
|
+
continue $sm;
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
case 1:
|
|
1094
|
+
if (!!equals(this.d29_1, this.c29_1)) {
|
|
1095
|
+
this.ac_1 = 4;
|
|
1096
|
+
continue $sm;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
var tmp_5 = this;
|
|
1100
|
+
tmp_5.e29_1 = this.d29_1;
|
|
1101
|
+
this.f29_1 = this.e29_1;
|
|
1102
|
+
var tmp_6 = this.f29_1;
|
|
1103
|
+
if (tmp_6 instanceof ChildHandleNode()) {
|
|
1104
|
+
this.ac_1 = 2;
|
|
1105
|
+
suspendResult = this.t28_1.ml(this.f29_1.t27_1, this);
|
|
1106
|
+
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1107
|
+
return suspendResult;
|
|
1108
|
+
}
|
|
1109
|
+
continue $sm;
|
|
1110
|
+
} else {
|
|
1111
|
+
this.ac_1 = 3;
|
|
1112
|
+
continue $sm;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
case 2:
|
|
1116
|
+
this.ac_1 = 3;
|
|
1117
|
+
continue $sm;
|
|
1118
|
+
case 3:
|
|
1119
|
+
this.d29_1 = this.d29_1.k24_1;
|
|
1120
|
+
this.ac_1 = 1;
|
|
1121
|
+
continue $sm;
|
|
1122
|
+
case 4:
|
|
1123
|
+
var tmp_7 = this;
|
|
1124
|
+
tmp_7.w28_1 = Unit_instance;
|
|
1125
|
+
this.ac_1 = 5;
|
|
1126
|
+
continue $sm;
|
|
1127
|
+
case 5:
|
|
1128
|
+
this.ac_1 = 7;
|
|
1129
|
+
continue $sm;
|
|
1130
|
+
case 6:
|
|
1131
|
+
this.ac_1 = 7;
|
|
1132
|
+
continue $sm;
|
|
1133
|
+
case 7:
|
|
1134
|
+
return Unit_instance;
|
|
1135
|
+
case 8:
|
|
1136
|
+
throw this.dc_1;
|
|
1137
|
+
}
|
|
1138
|
+
} catch ($p) {
|
|
1139
|
+
var e = $p;
|
|
1140
|
+
if (this.bc_1 === 8) {
|
|
1141
|
+
throw e;
|
|
1142
|
+
} else {
|
|
1143
|
+
this.ac_1 = this.bc_1;
|
|
1144
|
+
this.dc_1 = e;
|
|
1145
|
+
}
|
|
1146
|
+
}
|
|
1147
|
+
while (true);
|
|
1148
|
+
}
|
|
1149
|
+
h29($this$sequence, completion) {
|
|
1150
|
+
var i = new (JobSupport$_get_children_$slambda_k839f8())(this.s28_1, completion);
|
|
1151
|
+
i.t28_1 = $this$sequence;
|
|
1152
|
+
return i;
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
initMetadataForLambda($, VOID, VOID, [1]);
|
|
1156
|
+
JobSupport$_get_children_$slambda_k839f8Class = $;
|
|
1157
|
+
}
|
|
1158
|
+
return JobSupport$_get_children_$slambda_k839f8Class;
|
|
1159
|
+
}
|
|
1160
|
+
function JobSupport$_get_children_$slambda_k839f8_0(this$0, resultContinuation) {
|
|
1161
|
+
var i = new (JobSupport$_get_children_$slambda_k839f8())(this$0, resultContinuation);
|
|
1162
|
+
var l = function ($this$sequence, $completion) {
|
|
1163
|
+
return i.g29($this$sequence, $completion);
|
|
1164
|
+
};
|
|
1165
|
+
l.$arity = 1;
|
|
1166
|
+
return l;
|
|
1167
|
+
}
|
|
1168
|
+
var JobSupportClass;
|
|
1169
|
+
function JobSupport() {
|
|
1170
|
+
if (JobSupportClass === VOID) {
|
|
1171
|
+
class $ {
|
|
1172
|
+
constructor(active) {
|
|
1173
|
+
this.m1x_1 = atomic$ref$1(active ? get_EMPTY_ACTIVE() : get_EMPTY_NEW());
|
|
1174
|
+
this.n1x_1 = atomic$ref$1(null);
|
|
1175
|
+
}
|
|
1176
|
+
r1() {
|
|
1177
|
+
return Key_instance;
|
|
1178
|
+
}
|
|
1179
|
+
k1y(value) {
|
|
1180
|
+
this.n1x_1.kotlinx$atomicfu$value = value;
|
|
1181
|
+
}
|
|
1182
|
+
l1y() {
|
|
1183
|
+
return this.n1x_1.kotlinx$atomicfu$value;
|
|
1184
|
+
}
|
|
1185
|
+
m1y() {
|
|
1186
|
+
var tmp0_safe_receiver = this.l1y();
|
|
1187
|
+
return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.m1y();
|
|
1188
|
+
}
|
|
1189
|
+
o1x(parent) {
|
|
1190
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
1191
|
+
if (parent == null) {
|
|
1192
|
+
this.k1y(NonDisposableHandle_instance);
|
|
1193
|
+
return Unit_instance;
|
|
1194
|
+
}
|
|
1195
|
+
parent.q1y();
|
|
1196
|
+
var handle = parent.m1z(this);
|
|
1197
|
+
this.k1y(handle);
|
|
1198
|
+
if (this.o1y()) {
|
|
1199
|
+
handle.u21();
|
|
1200
|
+
this.k1y(NonDisposableHandle_instance);
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
n1y() {
|
|
1204
|
+
return this.m1x_1.kotlinx$atomicfu$value;
|
|
1205
|
+
}
|
|
1206
|
+
t1x() {
|
|
1207
|
+
var state = this.n1y();
|
|
1208
|
+
var tmp;
|
|
1209
|
+
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
1210
|
+
tmp = state.t1x();
|
|
1211
|
+
} else {
|
|
1212
|
+
tmp = false;
|
|
1213
|
+
}
|
|
1214
|
+
return tmp;
|
|
1215
|
+
}
|
|
1216
|
+
o1y() {
|
|
1217
|
+
var tmp = this.n1y();
|
|
1218
|
+
return !(!(tmp == null) ? isInterface(tmp, Incomplete()) : false);
|
|
1219
|
+
}
|
|
1220
|
+
p1y() {
|
|
1221
|
+
var state = this.n1y();
|
|
1222
|
+
var tmp;
|
|
1223
|
+
if (state instanceof CompletedExceptionally()) {
|
|
1224
|
+
tmp = true;
|
|
1225
|
+
} else {
|
|
1226
|
+
var tmp_0;
|
|
1227
|
+
if (state instanceof Finishing()) {
|
|
1228
|
+
tmp_0 = state.a27();
|
|
1229
|
+
} else {
|
|
1230
|
+
tmp_0 = false;
|
|
1231
|
+
}
|
|
1232
|
+
tmp = tmp_0;
|
|
1233
|
+
}
|
|
1234
|
+
return tmp;
|
|
1235
|
+
}
|
|
1236
|
+
q1y() {
|
|
1237
|
+
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1238
|
+
while (true) {
|
|
1239
|
+
var state = this.n1y();
|
|
1240
|
+
var tmp0_subject = startInternal(this, state);
|
|
1241
|
+
if (tmp0_subject === 0)
|
|
1242
|
+
return false;
|
|
1243
|
+
else if (tmp0_subject === 1)
|
|
1244
|
+
return true;
|
|
1245
|
+
}
|
|
1246
|
+
}
|
|
1247
|
+
r1y() {
|
|
1248
|
+
}
|
|
1249
|
+
s1y() {
|
|
1250
|
+
var state = this.n1y();
|
|
1251
|
+
var tmp;
|
|
1252
|
+
if (state instanceof Finishing()) {
|
|
1253
|
+
var tmp0_safe_receiver = state.n27();
|
|
1254
|
+
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : this.t1y(tmp0_safe_receiver, get_classSimpleName(this) + ' is cancelling');
|
|
1255
|
+
var tmp_0;
|
|
1256
|
+
if (tmp1_elvis_lhs == null) {
|
|
1257
|
+
var message = 'Job is still new or active: ' + this.toString();
|
|
1258
|
+
throw IllegalStateException().o4(toString(message));
|
|
1259
|
+
} else {
|
|
1260
|
+
tmp_0 = tmp1_elvis_lhs;
|
|
1261
|
+
}
|
|
1262
|
+
tmp = tmp_0;
|
|
1263
|
+
} else {
|
|
1264
|
+
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
1265
|
+
var message_0 = 'Job is still new or active: ' + this.toString();
|
|
1266
|
+
throw IllegalStateException().o4(toString(message_0));
|
|
1267
|
+
} else {
|
|
1268
|
+
if (state instanceof CompletedExceptionally()) {
|
|
1269
|
+
tmp = this.u1y(state.y1x_1);
|
|
1270
|
+
} else {
|
|
1271
|
+
tmp = JobCancellationException().i27(get_classSimpleName(this) + ' has completed normally', null, this);
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
return tmp;
|
|
1276
|
+
}
|
|
1277
|
+
t1y(_this__u8e3s4, message) {
|
|
1278
|
+
var tmp0_elvis_lhs = _this__u8e3s4 instanceof CancellationException() ? _this__u8e3s4 : null;
|
|
1279
|
+
var tmp;
|
|
1280
|
+
if (tmp0_elvis_lhs == null) {
|
|
1281
|
+
// Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
|
|
1282
|
+
tmp = JobCancellationException().i27(message == null ? this.w1x() : message, _this__u8e3s4, this);
|
|
1283
|
+
} else {
|
|
1284
|
+
tmp = tmp0_elvis_lhs;
|
|
1285
|
+
}
|
|
1286
|
+
return tmp;
|
|
1287
|
+
}
|
|
1288
|
+
u1y(_this__u8e3s4, message, $super) {
|
|
1289
|
+
message = message === VOID ? null : message;
|
|
1290
|
+
return $super === VOID ? this.t1y(_this__u8e3s4, message) : $super.t1y.call(this, _this__u8e3s4, message);
|
|
1291
|
+
}
|
|
1292
|
+
v1y(handler) {
|
|
1293
|
+
return this.y1y(true, new (InvokeOnCompletion())(handler));
|
|
1294
|
+
}
|
|
1295
|
+
w1y(onCancelling, invokeImmediately, handler) {
|
|
1296
|
+
var tmp;
|
|
1297
|
+
if (onCancelling) {
|
|
1298
|
+
tmp = new (InvokeOnCancelling())(handler);
|
|
1299
|
+
} else {
|
|
1300
|
+
tmp = new (InvokeOnCompletion())(handler);
|
|
1301
|
+
}
|
|
1302
|
+
return this.y1y(invokeImmediately, tmp);
|
|
1303
|
+
}
|
|
1304
|
+
y1y(invokeImmediately, node) {
|
|
1305
|
+
node.h24_1 = this;
|
|
1306
|
+
var tmp$ret$0;
|
|
1307
|
+
$l$block_1: {
|
|
1308
|
+
// Inline function 'kotlinx.coroutines.JobSupport.tryPutNodeIntoList' call
|
|
1309
|
+
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1310
|
+
while (true) {
|
|
1311
|
+
var state = this.n1y();
|
|
1312
|
+
if (state instanceof Empty()) {
|
|
1313
|
+
if (state.q26_1) {
|
|
1314
|
+
if (this.m1x_1.atomicfu$compareAndSet(state, node)) {
|
|
1315
|
+
tmp$ret$0 = true;
|
|
1316
|
+
break $l$block_1;
|
|
1317
|
+
}
|
|
1318
|
+
} else {
|
|
1319
|
+
promoteEmptyToNodeList(this, state);
|
|
1320
|
+
}
|
|
1321
|
+
} else {
|
|
1322
|
+
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
1323
|
+
var list = state.j24();
|
|
1324
|
+
if (list == null) {
|
|
1325
|
+
promoteSingleToNodeList(this, state instanceof JobNode() ? state : THROW_CCE());
|
|
1326
|
+
} else {
|
|
1327
|
+
var tmp;
|
|
1328
|
+
if (node.d24()) {
|
|
1329
|
+
var tmp0_safe_receiver = state instanceof Finishing() ? state : null;
|
|
1330
|
+
var rootCause = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.n27();
|
|
1331
|
+
var tmp_0;
|
|
1332
|
+
if (rootCause == null) {
|
|
1333
|
+
tmp_0 = list.n24(node, 5);
|
|
1334
|
+
} else {
|
|
1335
|
+
if (invokeImmediately) {
|
|
1336
|
+
node.t21(rootCause);
|
|
1337
|
+
}
|
|
1338
|
+
return NonDisposableHandle_instance;
|
|
1339
|
+
}
|
|
1340
|
+
tmp = tmp_0;
|
|
1341
|
+
} else {
|
|
1342
|
+
tmp = list.n24(node, 1);
|
|
1343
|
+
}
|
|
1344
|
+
if (tmp) {
|
|
1345
|
+
tmp$ret$0 = true;
|
|
1346
|
+
break $l$block_1;
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
} else {
|
|
1350
|
+
tmp$ret$0 = false;
|
|
1351
|
+
break $l$block_1;
|
|
1352
|
+
}
|
|
1353
|
+
}
|
|
1354
|
+
}
|
|
1355
|
+
}
|
|
1356
|
+
var added = tmp$ret$0;
|
|
1357
|
+
if (added)
|
|
1358
|
+
return node;
|
|
1359
|
+
else if (invokeImmediately) {
|
|
1360
|
+
var tmp_1 = this.n1y();
|
|
1361
|
+
var tmp0_safe_receiver_0 = tmp_1 instanceof CompletedExceptionally() ? tmp_1 : null;
|
|
1362
|
+
node.t21(tmp0_safe_receiver_0 == null ? null : tmp0_safe_receiver_0.y1x_1);
|
|
1363
|
+
}
|
|
1364
|
+
return NonDisposableHandle_instance;
|
|
1365
|
+
}
|
|
1366
|
+
z1y($completion) {
|
|
1367
|
+
if (!joinInternal(this)) {
|
|
1368
|
+
// Inline function 'kotlin.js.getCoroutineContext' call
|
|
1369
|
+
var tmp$ret$0 = $completion.gc();
|
|
1370
|
+
ensureActive(tmp$ret$0);
|
|
1371
|
+
return Unit_instance;
|
|
1372
|
+
}
|
|
1373
|
+
return joinSuspend(this, $completion);
|
|
1374
|
+
}
|
|
1375
|
+
a1z(node) {
|
|
1376
|
+
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1377
|
+
while (true) {
|
|
1378
|
+
var state = this.n1y();
|
|
1379
|
+
if (state instanceof JobNode()) {
|
|
1380
|
+
if (!(state === node))
|
|
1381
|
+
return Unit_instance;
|
|
1382
|
+
if (this.m1x_1.atomicfu$compareAndSet(state, get_EMPTY_ACTIVE()))
|
|
1383
|
+
return Unit_instance;
|
|
1384
|
+
} else {
|
|
1385
|
+
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
1386
|
+
if (!(state.j24() == null)) {
|
|
1387
|
+
node.o24();
|
|
1388
|
+
}
|
|
1389
|
+
return Unit_instance;
|
|
1390
|
+
} else {
|
|
1391
|
+
return Unit_instance;
|
|
1392
|
+
}
|
|
1393
|
+
}
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
b1z() {
|
|
1397
|
+
return false;
|
|
1398
|
+
}
|
|
1399
|
+
c1z(cause) {
|
|
1400
|
+
var tmp;
|
|
1401
|
+
if (cause == null) {
|
|
1402
|
+
// Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
|
|
1403
|
+
tmp = JobCancellationException().i27(null == null ? this.w1x() : null, null, this);
|
|
1404
|
+
} else {
|
|
1405
|
+
tmp = cause;
|
|
1406
|
+
}
|
|
1407
|
+
this.e1z(tmp);
|
|
1408
|
+
}
|
|
1409
|
+
w1x() {
|
|
1410
|
+
return 'Job was cancelled';
|
|
1411
|
+
}
|
|
1412
|
+
e1z(cause) {
|
|
1413
|
+
this.i1z(cause);
|
|
1414
|
+
}
|
|
1415
|
+
f1z(parentJob) {
|
|
1416
|
+
this.i1z(parentJob);
|
|
1417
|
+
}
|
|
1418
|
+
g1z(cause) {
|
|
1419
|
+
if (cause instanceof CancellationException())
|
|
1420
|
+
return true;
|
|
1421
|
+
return this.i1z(cause) && this.p1z();
|
|
1422
|
+
}
|
|
1423
|
+
h1z(cause) {
|
|
1424
|
+
return this.i1z(cause);
|
|
1425
|
+
}
|
|
1426
|
+
i1z(cause) {
|
|
1427
|
+
var finalState = get_COMPLETING_ALREADY();
|
|
1428
|
+
if (this.b1z()) {
|
|
1429
|
+
finalState = cancelMakeCompleting(this, cause);
|
|
1430
|
+
if (finalState === get_COMPLETING_WAITING_CHILDREN())
|
|
1431
|
+
return true;
|
|
1432
|
+
}
|
|
1433
|
+
if (finalState === get_COMPLETING_ALREADY()) {
|
|
1434
|
+
finalState = makeCancelling(this, cause);
|
|
1435
|
+
}
|
|
1436
|
+
var tmp;
|
|
1437
|
+
if (finalState === get_COMPLETING_ALREADY()) {
|
|
1438
|
+
tmp = true;
|
|
1439
|
+
} else if (finalState === get_COMPLETING_WAITING_CHILDREN()) {
|
|
1440
|
+
tmp = true;
|
|
1441
|
+
} else if (finalState === get_TOO_LATE_TO_CANCEL()) {
|
|
1442
|
+
tmp = false;
|
|
1443
|
+
} else {
|
|
1444
|
+
this.d1y(finalState);
|
|
1445
|
+
tmp = true;
|
|
1446
|
+
}
|
|
1447
|
+
return tmp;
|
|
1448
|
+
}
|
|
1449
|
+
j1z() {
|
|
1450
|
+
var state = this.n1y();
|
|
1451
|
+
var tmp;
|
|
1452
|
+
if (state instanceof Finishing()) {
|
|
1453
|
+
tmp = state.n27();
|
|
1454
|
+
} else {
|
|
1455
|
+
if (state instanceof CompletedExceptionally()) {
|
|
1456
|
+
tmp = state.y1x_1;
|
|
1457
|
+
} else {
|
|
1458
|
+
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
1459
|
+
var message = 'Cannot be cancelling child in this state: ' + toString(state);
|
|
1460
|
+
throw IllegalStateException().o4(toString(message));
|
|
1461
|
+
} else {
|
|
1462
|
+
tmp = null;
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1465
|
+
}
|
|
1466
|
+
var rootCause = tmp;
|
|
1467
|
+
var tmp1_elvis_lhs = rootCause instanceof CancellationException() ? rootCause : null;
|
|
1468
|
+
return tmp1_elvis_lhs == null ? JobCancellationException().i27('Parent job is ' + stateString(this, state), rootCause, this) : tmp1_elvis_lhs;
|
|
1469
|
+
}
|
|
1470
|
+
k1z(proposedUpdate) {
|
|
1471
|
+
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1472
|
+
while (true) {
|
|
1473
|
+
var tmp0 = this.n1y();
|
|
1474
|
+
$l$block: {
|
|
1475
|
+
var finalState = tryMakeCompleting(this, tmp0, proposedUpdate);
|
|
1476
|
+
if (finalState === get_COMPLETING_ALREADY())
|
|
1477
|
+
return false;
|
|
1478
|
+
else if (finalState === get_COMPLETING_WAITING_CHILDREN())
|
|
1479
|
+
return true;
|
|
1480
|
+
else if (finalState === get_COMPLETING_RETRY()) {
|
|
1481
|
+
break $l$block;
|
|
1482
|
+
} else {
|
|
1483
|
+
this.d1y(finalState);
|
|
1484
|
+
return true;
|
|
1485
|
+
}
|
|
1486
|
+
}
|
|
1487
|
+
}
|
|
1488
|
+
}
|
|
1489
|
+
b1y(proposedUpdate) {
|
|
1490
|
+
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1491
|
+
while (true) {
|
|
1492
|
+
var tmp0 = this.n1y();
|
|
1493
|
+
$l$block: {
|
|
1494
|
+
var finalState = tryMakeCompleting(this, tmp0, proposedUpdate);
|
|
1495
|
+
if (finalState === get_COMPLETING_ALREADY())
|
|
1496
|
+
throw IllegalStateException().ed('Job ' + this.toString() + ' is already complete or completing, ' + ('but is being completed with ' + toString_0(proposedUpdate)), _get_exceptionOrNull__b3j7js(this, proposedUpdate));
|
|
1497
|
+
else if (finalState === get_COMPLETING_RETRY()) {
|
|
1498
|
+
break $l$block;
|
|
1499
|
+
} else
|
|
1500
|
+
return finalState;
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
}
|
|
1504
|
+
l1z() {
|
|
1505
|
+
return sequence(JobSupport$_get_children_$slambda_k839f8_0(this, null));
|
|
1506
|
+
}
|
|
1507
|
+
m1z(child) {
|
|
1508
|
+
// Inline function 'kotlin.also' call
|
|
1509
|
+
var this_0 = new (ChildHandleNode())(child);
|
|
1510
|
+
this_0.h24_1 = this;
|
|
1511
|
+
var node = this_0;
|
|
1512
|
+
var tmp$ret$2;
|
|
1513
|
+
$l$block_1: {
|
|
1514
|
+
// Inline function 'kotlinx.coroutines.JobSupport.tryPutNodeIntoList' call
|
|
1515
|
+
// Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
|
|
1516
|
+
while (true) {
|
|
1517
|
+
var state = this.n1y();
|
|
1518
|
+
if (state instanceof Empty()) {
|
|
1519
|
+
if (state.q26_1) {
|
|
1520
|
+
if (this.m1x_1.atomicfu$compareAndSet(state, node)) {
|
|
1521
|
+
tmp$ret$2 = true;
|
|
1522
|
+
break $l$block_1;
|
|
1523
|
+
}
|
|
1524
|
+
} else {
|
|
1525
|
+
promoteEmptyToNodeList(this, state);
|
|
1526
|
+
}
|
|
1527
|
+
} else {
|
|
1528
|
+
if (!(state == null) ? isInterface(state, Incomplete()) : false) {
|
|
1529
|
+
var list = state.j24();
|
|
1530
|
+
if (list == null) {
|
|
1531
|
+
promoteSingleToNodeList(this, state instanceof JobNode() ? state : THROW_CCE());
|
|
1532
|
+
} else {
|
|
1533
|
+
var addedBeforeCancellation = list.n24(node, 7);
|
|
1534
|
+
var tmp;
|
|
1535
|
+
if (addedBeforeCancellation) {
|
|
1536
|
+
tmp = true;
|
|
1537
|
+
} else {
|
|
1538
|
+
var addedBeforeCompletion = list.n24(node, 3);
|
|
1539
|
+
var latestState = this.n1y();
|
|
1540
|
+
var tmp_0;
|
|
1541
|
+
if (latestState instanceof Finishing()) {
|
|
1542
|
+
tmp_0 = latestState.n27();
|
|
1543
|
+
} else {
|
|
1544
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
1545
|
+
var tmp0_safe_receiver = latestState instanceof CompletedExceptionally() ? latestState : null;
|
|
1546
|
+
tmp_0 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.y1x_1;
|
|
1547
|
+
}
|
|
1548
|
+
var rootCause = tmp_0;
|
|
1549
|
+
node.t21(rootCause);
|
|
1550
|
+
var tmp_1;
|
|
1551
|
+
if (addedBeforeCompletion) {
|
|
1552
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
1553
|
+
tmp_1 = true;
|
|
1554
|
+
} else {
|
|
1555
|
+
return NonDisposableHandle_instance;
|
|
1556
|
+
}
|
|
1557
|
+
tmp = tmp_1;
|
|
1558
|
+
}
|
|
1559
|
+
if (tmp) {
|
|
1560
|
+
tmp$ret$2 = true;
|
|
1561
|
+
break $l$block_1;
|
|
1562
|
+
}
|
|
1563
|
+
}
|
|
1564
|
+
} else {
|
|
1565
|
+
tmp$ret$2 = false;
|
|
1566
|
+
break $l$block_1;
|
|
1567
|
+
}
|
|
1568
|
+
}
|
|
1569
|
+
}
|
|
1570
|
+
}
|
|
1571
|
+
var added = tmp$ret$2;
|
|
1572
|
+
if (added)
|
|
1573
|
+
return node;
|
|
1574
|
+
var tmp_2 = this.n1y();
|
|
1575
|
+
var tmp0_safe_receiver_0 = tmp_2 instanceof CompletedExceptionally() ? tmp_2 : null;
|
|
1576
|
+
node.t21(tmp0_safe_receiver_0 == null ? null : tmp0_safe_receiver_0.y1x_1);
|
|
1577
|
+
return NonDisposableHandle_instance;
|
|
1578
|
+
}
|
|
1579
|
+
e1y(exception) {
|
|
1580
|
+
throw exception;
|
|
1581
|
+
}
|
|
1582
|
+
n1z(cause) {
|
|
1583
|
+
}
|
|
1584
|
+
o1z() {
|
|
1585
|
+
return false;
|
|
1586
|
+
}
|
|
1587
|
+
p1z() {
|
|
1588
|
+
return true;
|
|
1589
|
+
}
|
|
1590
|
+
q1z(exception) {
|
|
1591
|
+
return false;
|
|
1592
|
+
}
|
|
1593
|
+
x1x(state) {
|
|
1594
|
+
}
|
|
1595
|
+
d1y(state) {
|
|
1596
|
+
}
|
|
1597
|
+
toString() {
|
|
1598
|
+
return this.r1z() + '@' + get_hexAddress(this);
|
|
1599
|
+
}
|
|
1600
|
+
r1z() {
|
|
1601
|
+
return this.f1y() + '{' + stateString(this, this.n1y()) + '}';
|
|
1602
|
+
}
|
|
1603
|
+
f1y() {
|
|
1604
|
+
return get_classSimpleName(this);
|
|
1605
|
+
}
|
|
1606
|
+
s1z() {
|
|
1607
|
+
var state = this.n1y();
|
|
1608
|
+
// Inline function 'kotlin.check' call
|
|
1609
|
+
if (!!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
|
|
1610
|
+
var message = 'This job has not completed yet';
|
|
1611
|
+
throw IllegalStateException().o4(toString(message));
|
|
1612
|
+
}
|
|
1613
|
+
return _get_exceptionOrNull__b3j7js(this, state);
|
|
1614
|
+
}
|
|
1615
|
+
t1z() {
|
|
1616
|
+
var state = this.n1y();
|
|
1617
|
+
// Inline function 'kotlin.check' call
|
|
1618
|
+
if (!!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
|
|
1619
|
+
var message = 'This job has not completed yet';
|
|
1620
|
+
throw IllegalStateException().o4(toString(message));
|
|
1621
|
+
}
|
|
1622
|
+
if (state instanceof CompletedExceptionally())
|
|
1623
|
+
throw state.y1x_1;
|
|
1624
|
+
return unboxState(state);
|
|
1625
|
+
}
|
|
1626
|
+
u1z($completion) {
|
|
1627
|
+
$l$loop: while (true) {
|
|
1628
|
+
var state = this.n1y();
|
|
1629
|
+
if (!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
|
|
1630
|
+
if (state instanceof CompletedExceptionally()) {
|
|
1631
|
+
// Inline function 'kotlinx.coroutines.internal.recoverAndThrow' call
|
|
1632
|
+
throw state.y1x_1;
|
|
1633
|
+
}
|
|
1634
|
+
return unboxState(state);
|
|
1635
|
+
}
|
|
1636
|
+
if (startInternal(this, state) >= 0)
|
|
1637
|
+
break $l$loop;
|
|
1638
|
+
}
|
|
1639
|
+
return awaitSuspend(this, $completion);
|
|
1640
|
+
}
|
|
1641
|
+
}
|
|
1642
|
+
protoOf($).x1y = invokeOnCompletion$default;
|
|
1643
|
+
protoOf($).d1z = cancel$default;
|
|
1644
|
+
protoOf($).lm = plus;
|
|
1645
|
+
protoOf($).nc = get;
|
|
1646
|
+
protoOf($).km = fold;
|
|
1647
|
+
protoOf($).jm = minusKey;
|
|
1648
|
+
initMetadataForClass($, 'JobSupport', VOID, VOID, [Job(), ParentJob()], [0]);
|
|
1649
|
+
JobSupportClass = $;
|
|
1650
|
+
}
|
|
1651
|
+
return JobSupportClass;
|
|
1652
|
+
}
|
|
1653
|
+
function boxIncomplete(_this__u8e3s4) {
|
|
1654
|
+
_init_properties_JobSupport_kt__68f172();
|
|
1655
|
+
var tmp;
|
|
1656
|
+
if (!(_this__u8e3s4 == null) ? isInterface(_this__u8e3s4, Incomplete()) : false) {
|
|
1657
|
+
tmp = new (IncompleteStateBox())(_this__u8e3s4);
|
|
1658
|
+
} else {
|
|
1659
|
+
tmp = _this__u8e3s4;
|
|
1660
|
+
}
|
|
1661
|
+
return tmp;
|
|
1662
|
+
}
|
|
1663
|
+
var InactiveNodeListClass;
|
|
1664
|
+
function InactiveNodeList() {
|
|
1665
|
+
if (InactiveNodeListClass === VOID) {
|
|
1666
|
+
class $ {
|
|
1667
|
+
constructor(list) {
|
|
1668
|
+
this.j27_1 = list;
|
|
1669
|
+
}
|
|
1670
|
+
j24() {
|
|
1671
|
+
return this.j27_1;
|
|
1672
|
+
}
|
|
1673
|
+
t1x() {
|
|
1674
|
+
return false;
|
|
1675
|
+
}
|
|
1676
|
+
toString() {
|
|
1677
|
+
return get_DEBUG() ? this.j27_1.u26('New') : anyToString(this);
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
initMetadataForClass($, 'InactiveNodeList', VOID, VOID, [Incomplete()]);
|
|
1681
|
+
InactiveNodeListClass = $;
|
|
1682
|
+
}
|
|
1683
|
+
return InactiveNodeListClass;
|
|
1684
|
+
}
|
|
1685
|
+
var InvokeOnCompletionClass;
|
|
1686
|
+
function InvokeOnCompletion() {
|
|
1687
|
+
if (InvokeOnCompletionClass === VOID) {
|
|
1688
|
+
class $ extends JobNode() {
|
|
1689
|
+
constructor(handler) {
|
|
1690
|
+
super();
|
|
1691
|
+
this.m29_1 = handler;
|
|
1692
|
+
}
|
|
1693
|
+
d24() {
|
|
1694
|
+
return false;
|
|
1695
|
+
}
|
|
1696
|
+
t21(cause) {
|
|
1697
|
+
return this.m29_1(cause);
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1700
|
+
initMetadataForClass($, 'InvokeOnCompletion');
|
|
1701
|
+
InvokeOnCompletionClass = $;
|
|
1702
|
+
}
|
|
1703
|
+
return InvokeOnCompletionClass;
|
|
1704
|
+
}
|
|
1705
|
+
var InvokeOnCancellingClass;
|
|
1706
|
+
function InvokeOnCancelling() {
|
|
1707
|
+
if (InvokeOnCancellingClass === VOID) {
|
|
1708
|
+
class $ extends JobNode() {
|
|
1709
|
+
constructor(handler) {
|
|
1710
|
+
super();
|
|
1711
|
+
this.r29_1 = handler;
|
|
1712
|
+
this.s29_1 = atomic$boolean$1(false);
|
|
1713
|
+
}
|
|
1714
|
+
d24() {
|
|
1715
|
+
return true;
|
|
1716
|
+
}
|
|
1717
|
+
t21(cause) {
|
|
1718
|
+
if (this.s29_1.atomicfu$compareAndSet(false, true))
|
|
1719
|
+
this.r29_1(cause);
|
|
1720
|
+
}
|
|
1721
|
+
}
|
|
1722
|
+
initMetadataForClass($, 'InvokeOnCancelling');
|
|
1723
|
+
InvokeOnCancellingClass = $;
|
|
1724
|
+
}
|
|
1725
|
+
return InvokeOnCancellingClass;
|
|
1726
|
+
}
|
|
1727
|
+
var ResumeOnCompletionClass;
|
|
1728
|
+
function ResumeOnCompletion() {
|
|
1729
|
+
if (ResumeOnCompletionClass === VOID) {
|
|
1730
|
+
class $ extends JobNode() {
|
|
1731
|
+
constructor(continuation) {
|
|
1732
|
+
super();
|
|
1733
|
+
this.x29_1 = continuation;
|
|
1734
|
+
}
|
|
1735
|
+
d24() {
|
|
1736
|
+
return false;
|
|
1737
|
+
}
|
|
1738
|
+
t21(cause) {
|
|
1739
|
+
// Inline function 'kotlin.coroutines.resume' call
|
|
1740
|
+
var this_0 = this.x29_1;
|
|
1741
|
+
// Inline function 'kotlin.Companion.success' call
|
|
1742
|
+
var tmp$ret$0 = _Result___init__impl__xyqfz8(Unit_instance);
|
|
1743
|
+
this_0.lc(tmp$ret$0);
|
|
1744
|
+
return Unit_instance;
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
initMetadataForClass($, 'ResumeOnCompletion');
|
|
1748
|
+
ResumeOnCompletionClass = $;
|
|
1749
|
+
}
|
|
1750
|
+
return ResumeOnCompletionClass;
|
|
1751
|
+
}
|
|
1752
|
+
var ChildHandleNodeClass;
|
|
1753
|
+
function ChildHandleNode() {
|
|
1754
|
+
if (ChildHandleNodeClass === VOID) {
|
|
1755
|
+
class $ extends JobNode() {
|
|
1756
|
+
constructor(childJob) {
|
|
1757
|
+
super();
|
|
1758
|
+
this.t27_1 = childJob;
|
|
1759
|
+
}
|
|
1760
|
+
m1y() {
|
|
1761
|
+
return this.i24();
|
|
1762
|
+
}
|
|
1763
|
+
d24() {
|
|
1764
|
+
return true;
|
|
1765
|
+
}
|
|
1766
|
+
t21(cause) {
|
|
1767
|
+
return this.t27_1.f1z(this.i24());
|
|
1768
|
+
}
|
|
1769
|
+
g1z(cause) {
|
|
1770
|
+
return this.i24().g1z(cause);
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
initMetadataForClass($, 'ChildHandleNode');
|
|
1774
|
+
ChildHandleNodeClass = $;
|
|
1775
|
+
}
|
|
1776
|
+
return ChildHandleNodeClass;
|
|
1777
|
+
}
|
|
1778
|
+
function unboxState(_this__u8e3s4) {
|
|
1779
|
+
_init_properties_JobSupport_kt__68f172();
|
|
1780
|
+
var tmp0_safe_receiver = _this__u8e3s4 instanceof IncompleteStateBox() ? _this__u8e3s4 : null;
|
|
1781
|
+
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.y29_1;
|
|
1782
|
+
return tmp1_elvis_lhs == null ? _this__u8e3s4 : tmp1_elvis_lhs;
|
|
1783
|
+
}
|
|
1784
|
+
var ResumeAwaitOnCompletionClass;
|
|
1785
|
+
function ResumeAwaitOnCompletion() {
|
|
1786
|
+
if (ResumeAwaitOnCompletionClass === VOID) {
|
|
1787
|
+
class $ extends JobNode() {
|
|
1788
|
+
constructor(continuation) {
|
|
1789
|
+
super();
|
|
1790
|
+
this.d2a_1 = continuation;
|
|
1791
|
+
}
|
|
1792
|
+
d24() {
|
|
1793
|
+
return false;
|
|
1794
|
+
}
|
|
1795
|
+
t21(cause) {
|
|
1796
|
+
var state = this.i24().n1y();
|
|
1797
|
+
// Inline function 'kotlinx.coroutines.assert' call
|
|
1798
|
+
if (state instanceof CompletedExceptionally()) {
|
|
1799
|
+
var tmp0 = this.d2a_1;
|
|
1800
|
+
// Inline function 'kotlin.coroutines.resumeWithException' call
|
|
1801
|
+
// Inline function 'kotlin.Companion.failure' call
|
|
1802
|
+
var exception = state.y1x_1;
|
|
1803
|
+
var tmp$ret$1 = _Result___init__impl__xyqfz8(createFailure(exception));
|
|
1804
|
+
tmp0.lc(tmp$ret$1);
|
|
1805
|
+
} else {
|
|
1806
|
+
var tmp0_0 = this.d2a_1;
|
|
1807
|
+
var tmp = unboxState(state);
|
|
1808
|
+
// Inline function 'kotlin.coroutines.resume' call
|
|
1809
|
+
// Inline function 'kotlin.Companion.success' call
|
|
1810
|
+
var value = (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
|
|
1811
|
+
var tmp$ret$3 = _Result___init__impl__xyqfz8(value);
|
|
1812
|
+
tmp0_0.lc(tmp$ret$3);
|
|
1813
|
+
}
|
|
1814
|
+
}
|
|
1815
|
+
}
|
|
1816
|
+
initMetadataForClass($, 'ResumeAwaitOnCompletion');
|
|
1817
|
+
ResumeAwaitOnCompletionClass = $;
|
|
1818
|
+
}
|
|
1819
|
+
return ResumeAwaitOnCompletionClass;
|
|
1820
|
+
}
|
|
1821
|
+
var IncompleteStateBoxClass;
|
|
1822
|
+
function IncompleteStateBox() {
|
|
1823
|
+
if (IncompleteStateBoxClass === VOID) {
|
|
1824
|
+
class $ {
|
|
1825
|
+
constructor(state) {
|
|
1826
|
+
this.y29_1 = state;
|
|
1827
|
+
}
|
|
1828
|
+
}
|
|
1829
|
+
initMetadataForClass($, 'IncompleteStateBox');
|
|
1830
|
+
IncompleteStateBoxClass = $;
|
|
1831
|
+
}
|
|
1832
|
+
return IncompleteStateBoxClass;
|
|
1833
|
+
}
|
|
1834
|
+
function handlesExceptionF($this) {
|
|
1835
|
+
var tmp = $this.l1y();
|
|
1836
|
+
var tmp0_safe_receiver = tmp instanceof ChildHandleNode() ? tmp : null;
|
|
1837
|
+
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.i24();
|
|
1838
|
+
var tmp_0;
|
|
1839
|
+
if (tmp1_elvis_lhs == null) {
|
|
1840
|
+
return false;
|
|
1841
|
+
} else {
|
|
1842
|
+
tmp_0 = tmp1_elvis_lhs;
|
|
1843
|
+
}
|
|
1844
|
+
var parentJob = tmp_0;
|
|
1845
|
+
while (true) {
|
|
1846
|
+
if (parentJob.p1z())
|
|
1847
|
+
return true;
|
|
1848
|
+
var tmp_1 = parentJob.l1y();
|
|
1849
|
+
var tmp2_safe_receiver = tmp_1 instanceof ChildHandleNode() ? tmp_1 : null;
|
|
1850
|
+
var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.i24();
|
|
1851
|
+
var tmp_2;
|
|
1852
|
+
if (tmp3_elvis_lhs == null) {
|
|
1853
|
+
return false;
|
|
1854
|
+
} else {
|
|
1855
|
+
tmp_2 = tmp3_elvis_lhs;
|
|
1856
|
+
}
|
|
1857
|
+
parentJob = tmp_2;
|
|
1858
|
+
}
|
|
1859
|
+
}
|
|
1860
|
+
var JobImplClass;
|
|
1861
|
+
function JobImpl() {
|
|
1862
|
+
if (JobImplClass === VOID) {
|
|
1863
|
+
class $ extends JobSupport() {
|
|
1864
|
+
constructor(parent) {
|
|
1865
|
+
super(true);
|
|
1866
|
+
this.o1x(parent);
|
|
1867
|
+
this.g2a_1 = handlesExceptionF(this);
|
|
1868
|
+
}
|
|
1869
|
+
b1z() {
|
|
1870
|
+
return true;
|
|
1871
|
+
}
|
|
1872
|
+
p1z() {
|
|
1873
|
+
return this.g2a_1;
|
|
1874
|
+
}
|
|
1875
|
+
d25() {
|
|
1876
|
+
return this.k1z(Unit_instance);
|
|
1877
|
+
}
|
|
1878
|
+
c25(exception) {
|
|
1879
|
+
return this.k1z(new (CompletedExceptionally())(exception));
|
|
1880
|
+
}
|
|
1881
|
+
}
|
|
1882
|
+
initMetadataForClass($, 'JobImpl', VOID, VOID, [JobSupport(), CompletableJob()], [0]);
|
|
1883
|
+
JobImplClass = $;
|
|
1884
|
+
}
|
|
1885
|
+
return JobImplClass;
|
|
1886
|
+
}
|
|
1887
|
+
var properties_initialized_JobSupport_kt_5iq8a4;
|
|
1888
|
+
function _init_properties_JobSupport_kt__68f172() {
|
|
1889
|
+
if (!properties_initialized_JobSupport_kt_5iq8a4) {
|
|
1890
|
+
properties_initialized_JobSupport_kt_5iq8a4 = true;
|
|
1891
|
+
COMPLETING_ALREADY = new (Symbol())('COMPLETING_ALREADY');
|
|
1892
|
+
COMPLETING_WAITING_CHILDREN = new (Symbol())('COMPLETING_WAITING_CHILDREN');
|
|
1893
|
+
COMPLETING_RETRY = new (Symbol())('COMPLETING_RETRY');
|
|
1894
|
+
TOO_LATE_TO_CANCEL = new (Symbol())('TOO_LATE_TO_CANCEL');
|
|
1895
|
+
SEALED = new (Symbol())('SEALED');
|
|
1896
|
+
EMPTY_NEW = new (Empty())(false);
|
|
1897
|
+
EMPTY_ACTIVE = new (Empty())(true);
|
|
1898
|
+
}
|
|
1899
|
+
}
|
|
1900
|
+
//region block: exports
|
|
1901
|
+
export {
|
|
1902
|
+
get_COMPLETING_WAITING_CHILDREN as get_COMPLETING_WAITING_CHILDREN3nnjgv5wv89p1,
|
|
1903
|
+
JobImpl as JobImpl2fbttqo93wxua,
|
|
1904
|
+
JobNode as JobNode2tu3g3s3xsko1,
|
|
1905
|
+
JobSupport as JobSupport3fdjh0rbee4be,
|
|
1906
|
+
unboxState as unboxStateze7t12boxn2m,
|
|
1907
|
+
};
|
|
1908
|
+
//endregion
|
|
1909
|
+
|
|
1910
|
+
//# sourceMappingURL=JobSupport.mjs.map
|