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