@attocash/commons-js 5.4.1 → 6.1.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 +124 -111
- 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 -98
- 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 +21 -21
- 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 +2039 -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 +4 -4
- 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 -2412
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs.map +0 -1
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.export.d.ts +0 -3
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.export.mjs +0 -12
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.mjs +0 -727
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.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/AttoNodeOperationsJsImpl.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,225 +1,274 @@
|
|
|
1
|
-
import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
2
|
-
import { Long2qws0ah9gnpki as Long } from '../../../../../kotlin-kotlin-stdlib/kotlin/Primitives.mjs';
|
|
3
1
|
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
cancelChildren10wlln0b749a7 as cancelChildren,
|
|
7
|
-
get_job2zvlvce9o9a29 as get_job,
|
|
8
|
-
Job13y4jkazwjho0 as Job,
|
|
9
|
-
cancel1xim2hrvjmwpn as cancel,
|
|
10
|
-
} from '../../../../../kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs';
|
|
2
|
+
import { StringBuildermazzzhj6kkai as StringBuilder } from '../../../../../kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs';
|
|
11
3
|
import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
|
|
12
|
-
import {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
initMetadataForLambda3af3he42mmnh as initMetadataForLambda,
|
|
16
|
-
} from '../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
17
|
-
import { EmptyCoroutineContext_getInstance31fow51ayy30t as EmptyCoroutineContext_getInstance } from '../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs';
|
|
18
|
-
import { ByteChannel3cxdguezl3lu7 as ByteChannel } from './ByteChannel.mjs';
|
|
19
|
-
import { CoroutineScopefcb5f5dwqcas as CoroutineScope } from '../../../../../kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs';
|
|
20
|
-
import {
|
|
21
|
-
Companion_getInstance2zbi981hww1p4 as Companion_getInstance,
|
|
22
|
-
LineEndingMode__toString_impl_j4h76r32i8wewde0kag as LineEndingMode__toString_impl_j4h76r,
|
|
23
|
-
LineEndingMode__contains_impl_q5pr682au50lo4lfj91 as LineEndingMode__contains_impl_q5pr68,
|
|
24
|
-
} from './LineEndingMode.mjs';
|
|
25
|
-
import { launch1c91vkjzdi9sd as launch } from '../../../../../kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs';
|
|
26
|
-
import { onClose3ga65cfvm2yet as onClose } from './CloseHookByteWriteChannel.mjs';
|
|
27
|
-
import { ByteChannelScanner1h148q1m3y1ey as ByteChannelScanner } from './ByteChannelScanner.mjs';
|
|
28
|
-
import {
|
|
29
|
-
IOException1wyutdmfe71nu as IOException,
|
|
30
|
-
EOFExceptionh831u25jcq9n as EOFException,
|
|
31
|
-
} from '../../../../../kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs';
|
|
32
|
-
import { THROW_CCE2g6jy02ryeudk as THROW_CCE } from '../../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
|
|
33
|
-
import { isInterface3d6p8outrmvmk as isInterface } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs';
|
|
34
|
-
import { close3semq7pafb42g as close } from './ByteWriteChannelOperations.mjs';
|
|
4
|
+
import { suspendOrReturn49pspzlx5djv as suspendOrReturn } from '../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs';
|
|
5
|
+
import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
6
|
+
import { readAvailable27gpepp0hyyts as readAvailable } from './core/Input.mjs';
|
|
35
7
|
import { BytePacketBuilder2biodf4wxvlba as BytePacketBuilder } from './core/BytePacketBuilder.mjs';
|
|
8
|
+
import { readBytesj5m5qe40si0k as readBytes } from './core/Buffers.mjs';
|
|
36
9
|
import {
|
|
37
10
|
get_remaining1lapv95kcmm0y as get_remaining,
|
|
38
11
|
discard3ugntd47xyll6 as discard,
|
|
39
12
|
} from './core/ByteReadPacket.mjs';
|
|
40
|
-
import {
|
|
41
|
-
|
|
42
|
-
|
|
13
|
+
import {
|
|
14
|
+
subtract2orl8z9upxd9l as subtract,
|
|
15
|
+
fromInt2ii0rejb1w62w as fromInt,
|
|
16
|
+
numberToLong2pakxeg38estk as numberToLong,
|
|
17
|
+
convertToInty04h231mmjoh as convertToInt,
|
|
18
|
+
} from '../../../../../kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs';
|
|
19
|
+
import { close3semq7pafb42g as close } from './ByteWriteChannelOperations.mjs';
|
|
20
|
+
import { equals2au1ep9vhcato as equals } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
43
21
|
import { Buffergs925ekssbch as Buffer } from '../../../../../kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs';
|
|
22
|
+
import {
|
|
23
|
+
EOFExceptionh831u25jcq9n as EOFException,
|
|
24
|
+
IOException1wyutdmfe71nu as IOException,
|
|
25
|
+
} from '../../../../../kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs';
|
|
26
|
+
import { ByteChannelScanner1h148q1m3y1ey as ByteChannelScanner } from './ByteChannelScanner.mjs';
|
|
27
|
+
import {
|
|
28
|
+
Companion_getInstance2zbi981hww1p4 as Companion_getInstance,
|
|
29
|
+
LineEndingMode__toString_impl_j4h76r32i8wewde0kag as LineEndingMode__toString_impl_j4h76r,
|
|
30
|
+
LineEndingMode__contains_impl_q5pr682au50lo4lfj91 as LineEndingMode__contains_impl_q5pr68,
|
|
31
|
+
} from './LineEndingMode.mjs';
|
|
44
32
|
import { readStringo8i62qxt5m4m as readString } from '../../../../../kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs';
|
|
45
33
|
import { TooLongLineException2d6ls946t46wx as TooLongLineException } from './charsets/Encoding.mjs';
|
|
46
|
-
import {
|
|
47
|
-
toLongw1zpgk99d84b as toLong,
|
|
48
|
-
numberToLong1a4cndvg6c52s as numberToLong,
|
|
49
|
-
} from '../../../../../kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs';
|
|
50
34
|
import { closeFinally1sadm0w9gt3u4 as closeFinally } from '../../../../../kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs';
|
|
51
|
-
import { equals2au1ep9vhcato as equals } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
52
35
|
import { readByteString2hnsbql6t4ads as readByteString } from '../../../../../kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs';
|
|
53
36
|
//region block: imports
|
|
54
37
|
//endregion
|
|
55
38
|
//region block: pre-declaration
|
|
56
39
|
//endregion
|
|
57
|
-
function
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
tmp
|
|
61
|
-
|
|
40
|
+
function *_generator_readUTF8Line__dbdzfx(_this__u8e3s4, max, $completion) {
|
|
41
|
+
max = max === VOID ? 2147483647 : max;
|
|
42
|
+
var result = StringBuilder().x();
|
|
43
|
+
var tmp = readUTF8LineTo_0(_this__u8e3s4, result, max, $completion);
|
|
44
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
45
|
+
tmp = yield tmp;
|
|
46
|
+
var completed = tmp;
|
|
47
|
+
return !completed ? null : result.toString();
|
|
62
48
|
}
|
|
63
|
-
function
|
|
64
|
-
max = max === VOID ?
|
|
65
|
-
|
|
66
|
-
tmp.cc_1 = Unit_instance;
|
|
67
|
-
tmp.dc_1 = null;
|
|
68
|
-
return tmp.ic();
|
|
49
|
+
function readUTF8Line(_this__u8e3s4, max, $completion) {
|
|
50
|
+
max = max === VOID ? 2147483647 : max;
|
|
51
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_readUTF8Line__dbdzfx.bind(VOID, _this__u8e3s4, max), $completion);
|
|
69
52
|
}
|
|
70
|
-
function
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
53
|
+
function *_generator_readAvailable__ki7w73(_this__u8e3s4, buffer, offset, length, $completion) {
|
|
54
|
+
offset = offset === VOID ? 0 : offset;
|
|
55
|
+
length = length === VOID ? buffer.length - offset | 0 : length;
|
|
56
|
+
if (_this__u8e3s4.l3u())
|
|
57
|
+
return -1;
|
|
58
|
+
if (_this__u8e3s4.e3u().b27()) {
|
|
59
|
+
var tmp = _this__u8e3s4.n3u(VOID, $completion);
|
|
60
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
61
|
+
tmp = yield tmp;
|
|
62
|
+
}
|
|
63
|
+
if (_this__u8e3s4.l3u())
|
|
64
|
+
return -1;
|
|
65
|
+
return readAvailable(_this__u8e3s4.e3u(), buffer, offset, length);
|
|
75
66
|
}
|
|
76
67
|
function readAvailable_0(_this__u8e3s4, buffer, offset, length, $completion) {
|
|
77
68
|
offset = offset === VOID ? 0 : offset;
|
|
78
69
|
length = length === VOID ? buffer.length - offset | 0 : length;
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
70
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_readAvailable__ki7w73.bind(VOID, _this__u8e3s4, buffer, offset, length), $completion);
|
|
71
|
+
}
|
|
72
|
+
function *_generator_readRemaining__kd4xx0(_this__u8e3s4, $completion) {
|
|
73
|
+
var result = BytePacketBuilder();
|
|
74
|
+
while (!_this__u8e3s4.l3u()) {
|
|
75
|
+
result.w28(_this__u8e3s4.e3u());
|
|
76
|
+
var tmp = _this__u8e3s4.n3u(VOID, $completion);
|
|
77
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
78
|
+
tmp = yield tmp;
|
|
79
|
+
}
|
|
80
|
+
rethrowCloseCauseIfNeeded_0(_this__u8e3s4);
|
|
81
|
+
return result.a27();
|
|
83
82
|
}
|
|
84
|
-
function
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
tmp
|
|
89
|
-
|
|
83
|
+
function readRemaining(_this__u8e3s4, $completion) {
|
|
84
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_readRemaining__kd4xx0.bind(VOID, _this__u8e3s4), $completion);
|
|
85
|
+
}
|
|
86
|
+
function *_generator_toByteArray__v3q9dq(_this__u8e3s4, $completion) {
|
|
87
|
+
var tmp = readBuffer(_this__u8e3s4, $completion);
|
|
88
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
89
|
+
tmp = yield tmp;
|
|
90
|
+
return readBytes(tmp);
|
|
90
91
|
}
|
|
91
92
|
function toByteArray(_this__u8e3s4, $completion) {
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_toByteArray__v3q9dq.bind(VOID, _this__u8e3s4), $completion);
|
|
94
|
+
}
|
|
95
|
+
function *_generator_copyTo__iu4794(_this__u8e3s4, channel, limit, $completion) {
|
|
96
|
+
var remaining = limit;
|
|
97
|
+
try {
|
|
98
|
+
while (!_this__u8e3s4.l3u() && remaining > 0n) {
|
|
99
|
+
if (_this__u8e3s4.e3u().b27()) {
|
|
100
|
+
var tmp = _this__u8e3s4.n3u(VOID, $completion);
|
|
101
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
102
|
+
tmp = yield tmp;
|
|
103
|
+
}
|
|
104
|
+
var tmp0 = remaining;
|
|
105
|
+
// Inline function 'kotlin.comparisons.minOf' call
|
|
106
|
+
var b = get_remaining(_this__u8e3s4.e3u());
|
|
107
|
+
var count = tmp0 <= b ? tmp0 : b;
|
|
108
|
+
_this__u8e3s4.e3u().h28(channel.h3u(), count);
|
|
109
|
+
remaining = subtract(remaining, count);
|
|
110
|
+
var tmp_0 = channel.s3t($completion);
|
|
111
|
+
if (tmp_0 === get_COROUTINE_SUSPENDED())
|
|
112
|
+
tmp_0 = yield tmp_0;
|
|
113
|
+
}
|
|
114
|
+
} catch ($p) {
|
|
115
|
+
if ($p instanceof Error) {
|
|
116
|
+
var cause = $p;
|
|
117
|
+
_this__u8e3s4.p3u(cause);
|
|
118
|
+
close(channel, cause);
|
|
119
|
+
throw cause;
|
|
120
|
+
} else {
|
|
121
|
+
throw $p;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
finally {
|
|
125
|
+
var tmp_1 = channel.s3t($completion);
|
|
126
|
+
if (tmp_1 === get_COROUTINE_SUSPENDED())
|
|
127
|
+
tmp_1 = yield tmp_1;
|
|
128
|
+
}
|
|
129
|
+
return subtract(limit, remaining);
|
|
96
130
|
}
|
|
97
131
|
function copyTo(_this__u8e3s4, channel, limit, $completion) {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
super(resultContinuation);
|
|
109
|
-
this.w3g_1 = _this__u8e3s4;
|
|
110
|
-
}
|
|
111
|
-
ic() {
|
|
112
|
-
var suspendResult = this.cc_1;
|
|
113
|
-
$sm: do
|
|
114
|
-
try {
|
|
115
|
-
var tmp = this.ac_1;
|
|
116
|
-
switch (tmp) {
|
|
117
|
-
case 0:
|
|
118
|
-
this.bc_1 = 5;
|
|
119
|
-
cancelChildren(this.w3g_1.e3h_1);
|
|
120
|
-
var tmp_0 = this;
|
|
121
|
-
tmp_0.x3g_1 = this.w3g_1.e3h_1.l1z();
|
|
122
|
-
this.y3g_1 = this.x3g_1;
|
|
123
|
-
this.z3g_1 = this.y3g_1.d1();
|
|
124
|
-
this.ac_1 = 1;
|
|
125
|
-
continue $sm;
|
|
126
|
-
case 1:
|
|
127
|
-
if (!this.z3g_1.e1()) {
|
|
128
|
-
this.ac_1 = 3;
|
|
129
|
-
continue $sm;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
this.a3h_1 = this.z3g_1.f1();
|
|
133
|
-
var tmp_1 = this;
|
|
134
|
-
tmp_1.b3h_1 = this.a3h_1;
|
|
135
|
-
this.c3h_1 = this.b3h_1;
|
|
136
|
-
this.ac_1 = 2;
|
|
137
|
-
suspendResult = this.c3h_1.z1y(this);
|
|
138
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
139
|
-
return suspendResult;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
continue $sm;
|
|
143
|
-
case 2:
|
|
144
|
-
this.ac_1 = 1;
|
|
145
|
-
continue $sm;
|
|
146
|
-
case 3:
|
|
147
|
-
this.ac_1 = 4;
|
|
148
|
-
suspendResult = this.w3g_1.d3h_1.k3b(this);
|
|
149
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
150
|
-
return suspendResult;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
continue $sm;
|
|
154
|
-
case 4:
|
|
155
|
-
return Unit_instance;
|
|
156
|
-
case 5:
|
|
157
|
-
throw this.dc_1;
|
|
158
|
-
}
|
|
159
|
-
} catch ($p) {
|
|
160
|
-
var e = $p;
|
|
161
|
-
if (this.bc_1 === 5) {
|
|
162
|
-
throw e;
|
|
163
|
-
} else {
|
|
164
|
-
this.ac_1 = this.bc_1;
|
|
165
|
-
this.dc_1 = e;
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
while (true);
|
|
169
|
-
}
|
|
132
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_copyTo__iu4794.bind(VOID, _this__u8e3s4, channel, limit), $completion);
|
|
133
|
+
}
|
|
134
|
+
function *_generator_discard__skcevq(_this__u8e3s4, max, $completion) {
|
|
135
|
+
max = max === VOID ? 9223372036854775807n : max;
|
|
136
|
+
var remaining = max;
|
|
137
|
+
while (remaining > 0n && !_this__u8e3s4.l3u()) {
|
|
138
|
+
if (get_availableForRead(_this__u8e3s4) === 0) {
|
|
139
|
+
var tmp = _this__u8e3s4.n3u(VOID, $completion);
|
|
140
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
141
|
+
tmp = yield tmp;
|
|
170
142
|
}
|
|
171
|
-
|
|
172
|
-
|
|
143
|
+
var tmp0 = remaining;
|
|
144
|
+
// Inline function 'kotlin.comparisons.minOf' call
|
|
145
|
+
var b = get_remaining(_this__u8e3s4.e3u());
|
|
146
|
+
var count = tmp0 <= b ? tmp0 : b;
|
|
147
|
+
discard(_this__u8e3s4.e3u(), count);
|
|
148
|
+
remaining = subtract(remaining, count);
|
|
173
149
|
}
|
|
174
|
-
return
|
|
150
|
+
return subtract(max, remaining);
|
|
175
151
|
}
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
152
|
+
function discard_0(_this__u8e3s4, max, $completion) {
|
|
153
|
+
max = max === VOID ? 9223372036854775807n : max;
|
|
154
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_discard__skcevq.bind(VOID, _this__u8e3s4, max), $completion);
|
|
155
|
+
}
|
|
156
|
+
function *_generator_skipIfFound__8uzshe(_this__u8e3s4, byteString, $completion) {
|
|
157
|
+
var tmp = peek(_this__u8e3s4, byteString.n1(), $completion);
|
|
158
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
159
|
+
tmp = yield tmp;
|
|
160
|
+
if (equals(tmp, byteString)) {
|
|
161
|
+
var tmp_0 = discard_0(_this__u8e3s4, fromInt(byteString.n1()), $completion);
|
|
162
|
+
if (tmp_0 === get_COROUTINE_SUSPENDED())
|
|
163
|
+
tmp_0 = yield tmp_0;
|
|
164
|
+
return true;
|
|
165
|
+
}
|
|
166
|
+
return false;
|
|
167
|
+
}
|
|
168
|
+
function skipIfFound(_this__u8e3s4, byteString, $completion) {
|
|
169
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_skipIfFound__8uzshe.bind(VOID, _this__u8e3s4, byteString), $completion);
|
|
170
|
+
}
|
|
171
|
+
function *_generator_readPacket__axk2oa(_this__u8e3s4, packet, $completion) {
|
|
172
|
+
var result = new (Buffer())();
|
|
173
|
+
$l$loop: while (result.n1() < fromInt(packet)) {
|
|
174
|
+
if (_this__u8e3s4.e3u().b27()) {
|
|
175
|
+
var tmp = _this__u8e3s4.n3u(VOID, $completion);
|
|
176
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
177
|
+
tmp = yield tmp;
|
|
193
178
|
}
|
|
194
|
-
|
|
195
|
-
|
|
179
|
+
if (_this__u8e3s4.l3u())
|
|
180
|
+
break $l$loop;
|
|
181
|
+
if (get_remaining(_this__u8e3s4.e3u()) > subtract(numberToLong(packet), result.n1())) {
|
|
182
|
+
_this__u8e3s4.e3u().h28(result, subtract(numberToLong(packet), result.n1()));
|
|
183
|
+
} else {
|
|
184
|
+
_this__u8e3s4.e3u().i28(result);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
if (result.n1() < fromInt(packet)) {
|
|
188
|
+
throw EOFException().z26('Not enough data available, required ' + packet + ' bytes but only ' + result.n1().toString() + ' available');
|
|
196
189
|
}
|
|
197
|
-
return
|
|
190
|
+
return result;
|
|
198
191
|
}
|
|
199
|
-
function
|
|
200
|
-
|
|
201
|
-
autoFlush = autoFlush === VOID ? false : autoFlush;
|
|
202
|
-
return reader_0(_this__u8e3s4, coroutineContext, new (ByteChannel())(), block);
|
|
192
|
+
function readPacket(_this__u8e3s4, packet, $completion) {
|
|
193
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_readPacket__axk2oa.bind(VOID, _this__u8e3s4, packet), $completion);
|
|
203
194
|
}
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
195
|
+
function readUntil(_this__u8e3s4, matchString, writeChannel, limit, ignoreMissing, $completion) {
|
|
196
|
+
limit = limit === VOID ? 9223372036854775807n : limit;
|
|
197
|
+
ignoreMissing = ignoreMissing === VOID ? false : ignoreMissing;
|
|
198
|
+
return (new (ByteChannelScanner())(_this__u8e3s4, matchString, writeChannel, limit)).z3u(ignoreMissing, $completion);
|
|
199
|
+
}
|
|
200
|
+
function *_generator_readUTF8LineTo__bg1rci(_this__u8e3s4, out, max, lineEnding, $completion) {
|
|
201
|
+
max = max === VOID ? 2147483647 : max;
|
|
202
|
+
lineEnding = lineEnding === VOID ? Companion_getInstance().g3v_1 : lineEnding;
|
|
203
|
+
if (_this__u8e3s4.e3u().b27()) {
|
|
204
|
+
var tmp = _this__u8e3s4.n3u(VOID, $completion);
|
|
205
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
206
|
+
tmp = yield tmp;
|
|
207
|
+
}
|
|
208
|
+
if (_this__u8e3s4.l3u())
|
|
209
|
+
return false;
|
|
210
|
+
// Inline function 'kotlin.use' call
|
|
211
|
+
var this_0 = new (Buffer())();
|
|
212
|
+
var exception = null;
|
|
213
|
+
try {
|
|
214
|
+
while (!_this__u8e3s4.l3u()) {
|
|
215
|
+
while (!_this__u8e3s4.e3u().b27()) {
|
|
216
|
+
var b = _this__u8e3s4.e3u().e27();
|
|
217
|
+
if (b === 13) {
|
|
218
|
+
if (_this__u8e3s4.e3u().b27()) {
|
|
219
|
+
var tmp_0 = _this__u8e3s4.n3u(VOID, $completion);
|
|
220
|
+
if (tmp_0 === get_COROUTINE_SUSPENDED())
|
|
221
|
+
tmp_0 = yield tmp_0;
|
|
222
|
+
}
|
|
223
|
+
if (_this__u8e3s4.e3u().a27().a28(0n) === 10) {
|
|
224
|
+
readUTF8LineTo$checkLineEndingAllowed(lineEnding, Companion_getInstance().f3v_1);
|
|
225
|
+
discard(_this__u8e3s4.e3u(), 1n);
|
|
226
|
+
} else {
|
|
227
|
+
readUTF8LineTo$checkLineEndingAllowed(lineEnding, Companion_getInstance().d3v_1);
|
|
228
|
+
}
|
|
229
|
+
out.b1(readString(this_0));
|
|
230
|
+
return true;
|
|
231
|
+
} else if (b === 10) {
|
|
232
|
+
readUTF8LineTo$checkLineEndingAllowed(lineEnding, Companion_getInstance().e3v_1);
|
|
233
|
+
out.b1(readString(this_0));
|
|
234
|
+
return true;
|
|
235
|
+
} else {
|
|
236
|
+
this_0.x28(b);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
if (this_0.n1() >= fromInt(max)) {
|
|
240
|
+
throw TooLongLineException().m3v('Line exceeds limit of ' + max + ' characters');
|
|
241
|
+
}
|
|
242
|
+
var tmp_1 = _this__u8e3s4.n3u(VOID, $completion);
|
|
243
|
+
if (tmp_1 === get_COROUTINE_SUSPENDED())
|
|
244
|
+
tmp_1 = yield tmp_1;
|
|
245
|
+
}
|
|
246
|
+
// Inline function 'kotlin.also' call
|
|
247
|
+
var this_1 = this_0.n1() > 0n;
|
|
248
|
+
if (this_1) {
|
|
249
|
+
out.b1(readString(this_0));
|
|
215
250
|
}
|
|
216
|
-
|
|
217
|
-
|
|
251
|
+
return this_1;
|
|
252
|
+
} catch ($p) {
|
|
253
|
+
if ($p instanceof Error) {
|
|
254
|
+
var e = $p;
|
|
255
|
+
exception = e;
|
|
256
|
+
throw e;
|
|
257
|
+
} else {
|
|
258
|
+
throw $p;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
finally {
|
|
262
|
+
closeFinally(this_0, exception);
|
|
218
263
|
}
|
|
219
|
-
|
|
264
|
+
}
|
|
265
|
+
function readUTF8LineTo(_this__u8e3s4, out, max, lineEnding, $completion) {
|
|
266
|
+
max = max === VOID ? 2147483647 : max;
|
|
267
|
+
lineEnding = lineEnding === VOID ? Companion_getInstance().g3v_1 : lineEnding;
|
|
268
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_readUTF8LineTo__bg1rci.bind(VOID, _this__u8e3s4, out, max, lineEnding), $completion);
|
|
220
269
|
}
|
|
221
270
|
function rethrowCloseCauseIfNeeded(_this__u8e3s4) {
|
|
222
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
271
|
+
var tmp0_safe_receiver = _this__u8e3s4.j3u();
|
|
223
272
|
if (tmp0_safe_receiver == null)
|
|
224
273
|
null;
|
|
225
274
|
else {
|
|
@@ -227,36 +276,12 @@ function rethrowCloseCauseIfNeeded(_this__u8e3s4) {
|
|
|
227
276
|
throw tmp0_safe_receiver;
|
|
228
277
|
}
|
|
229
278
|
}
|
|
230
|
-
function
|
|
231
|
-
return _this__u8e3s4.a3b().n2r().i1().c2();
|
|
232
|
-
}
|
|
233
|
-
function readUTF8LineTo(_this__u8e3s4, out, max, $completion) {
|
|
234
|
-
max = max === VOID ? 2147483647 : max;
|
|
235
|
-
return readUTF8LineTo_0(_this__u8e3s4, out, max, Companion_getInstance().k3h_1, $completion);
|
|
236
|
-
}
|
|
237
|
-
function readBuffer(_this__u8e3s4, $completion) {
|
|
238
|
-
var tmp = new ($readBufferCOROUTINE$())(_this__u8e3s4, $completion);
|
|
239
|
-
tmp.cc_1 = Unit_instance;
|
|
240
|
-
tmp.dc_1 = null;
|
|
241
|
-
return tmp.ic();
|
|
242
|
-
}
|
|
243
|
-
function reader_0(_this__u8e3s4, coroutineContext, channel, block) {
|
|
244
|
-
// Inline function 'kotlin.apply' call
|
|
245
|
-
var this_0 = launch(_this__u8e3s4, coroutineContext, VOID, reader$slambda_0(block, channel, null));
|
|
246
|
-
this_0.v1y(reader$lambda(channel));
|
|
247
|
-
var job = this_0;
|
|
248
|
-
return new (ReaderJob())(onClose(channel, reader$slambda_2(job, null)), job);
|
|
249
|
-
}
|
|
250
|
-
function readUTF8LineTo_0(_this__u8e3s4, out, max, lineEnding, $completion) {
|
|
279
|
+
function readUTF8LineTo_0(_this__u8e3s4, out, max, $completion) {
|
|
251
280
|
max = max === VOID ? 2147483647 : max;
|
|
252
|
-
|
|
253
|
-
var tmp = new ($readUTF8LineToCOROUTINE$())(_this__u8e3s4, out, max, lineEnding, $completion);
|
|
254
|
-
tmp.cc_1 = Unit_instance;
|
|
255
|
-
tmp.dc_1 = null;
|
|
256
|
-
return tmp.ic();
|
|
281
|
+
return readUTF8LineTo(_this__u8e3s4, out, max, Companion_getInstance().g3v_1, $completion);
|
|
257
282
|
}
|
|
258
283
|
function rethrowCloseCauseIfNeeded_0(_this__u8e3s4) {
|
|
259
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
284
|
+
var tmp0_safe_receiver = _this__u8e3s4.j3u();
|
|
260
285
|
if (tmp0_safe_receiver == null)
|
|
261
286
|
null;
|
|
262
287
|
else {
|
|
@@ -264,1560 +289,68 @@ function rethrowCloseCauseIfNeeded_0(_this__u8e3s4) {
|
|
|
264
289
|
throw tmp0_safe_receiver;
|
|
265
290
|
}
|
|
266
291
|
}
|
|
267
|
-
function
|
|
268
|
-
var
|
|
292
|
+
function *_generator_readBuffer__s1sw5u(_this__u8e3s4, $completion) {
|
|
293
|
+
var result = new (Buffer())();
|
|
294
|
+
while (!_this__u8e3s4.l3u()) {
|
|
295
|
+
result.w28(_this__u8e3s4.e3u());
|
|
296
|
+
var tmp = _this__u8e3s4.n3u(VOID, $completion);
|
|
297
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
298
|
+
tmp = yield tmp;
|
|
299
|
+
}
|
|
300
|
+
var tmp0_safe_receiver = _this__u8e3s4.j3u();
|
|
269
301
|
if (tmp0_safe_receiver == null)
|
|
270
302
|
null;
|
|
271
303
|
else {
|
|
272
304
|
// Inline function 'kotlin.let' call
|
|
273
305
|
throw tmp0_safe_receiver;
|
|
274
306
|
}
|
|
307
|
+
return result;
|
|
275
308
|
}
|
|
276
|
-
function
|
|
277
|
-
|
|
278
|
-
tmp.cc_1 = Unit_instance;
|
|
279
|
-
tmp.dc_1 = null;
|
|
280
|
-
return tmp.ic();
|
|
281
|
-
}
|
|
282
|
-
function readPacket(_this__u8e3s4, packet, $completion) {
|
|
283
|
-
var tmp = new ($readPacketCOROUTINE$())(_this__u8e3s4, packet, $completion);
|
|
284
|
-
tmp.cc_1 = Unit_instance;
|
|
285
|
-
tmp.dc_1 = null;
|
|
286
|
-
return tmp.ic();
|
|
287
|
-
}
|
|
288
|
-
function readUntil(_this__u8e3s4, matchString, writeChannel, limit, ignoreMissing, $completion) {
|
|
289
|
-
limit = limit === VOID ? new (Long())(-1, 2147483647) : limit;
|
|
290
|
-
ignoreMissing = ignoreMissing === VOID ? false : ignoreMissing;
|
|
291
|
-
return (new (ByteChannelScanner())(_this__u8e3s4, matchString, writeChannel, limit)).e3d(ignoreMissing, $completion);
|
|
292
|
-
}
|
|
293
|
-
function readByte(_this__u8e3s4, $completion) {
|
|
294
|
-
var tmp = new ($readByteCOROUTINE$())(_this__u8e3s4, $completion);
|
|
295
|
-
tmp.cc_1 = Unit_instance;
|
|
296
|
-
tmp.dc_1 = null;
|
|
297
|
-
return tmp.ic();
|
|
298
|
-
}
|
|
299
|
-
function readShort(_this__u8e3s4, $completion) {
|
|
300
|
-
var tmp = new ($readShortCOROUTINE$())(_this__u8e3s4, $completion);
|
|
301
|
-
tmp.cc_1 = Unit_instance;
|
|
302
|
-
tmp.dc_1 = null;
|
|
303
|
-
return tmp.ic();
|
|
304
|
-
}
|
|
305
|
-
function readLong(_this__u8e3s4, $completion) {
|
|
306
|
-
var tmp = new ($readLongCOROUTINE$())(_this__u8e3s4, $completion);
|
|
307
|
-
tmp.cc_1 = Unit_instance;
|
|
308
|
-
tmp.dc_1 = null;
|
|
309
|
-
return tmp.ic();
|
|
309
|
+
function readBuffer(_this__u8e3s4, $completion) {
|
|
310
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_readBuffer__s1sw5u.bind(VOID, _this__u8e3s4), $completion);
|
|
310
311
|
}
|
|
311
|
-
function
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
312
|
+
function get_availableForRead(_this__u8e3s4) {
|
|
313
|
+
return convertToInt(_this__u8e3s4.e3u().a27().n1());
|
|
314
|
+
}
|
|
315
|
+
function *_generator_peek__qjkkqb(_this__u8e3s4, count, $completion) {
|
|
316
|
+
if (_this__u8e3s4.l3u())
|
|
317
|
+
return null;
|
|
318
|
+
var tmp = _this__u8e3s4.m3u(count, $completion);
|
|
319
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
320
|
+
tmp = yield tmp;
|
|
321
|
+
if (!tmp)
|
|
322
|
+
return null;
|
|
323
|
+
return readByteString(_this__u8e3s4.e3u().j28(), count);
|
|
316
324
|
}
|
|
317
325
|
function peek(_this__u8e3s4, count, $completion) {
|
|
318
|
-
|
|
319
|
-
tmp.cc_1 = Unit_instance;
|
|
320
|
-
tmp.dc_1 = null;
|
|
321
|
-
return tmp.ic();
|
|
326
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_peek__qjkkqb.bind(VOID, _this__u8e3s4, count), $completion);
|
|
322
327
|
}
|
|
323
|
-
function
|
|
324
|
-
var
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
+
function rethrowCloseCauseIfNeeded_1(_this__u8e3s4) {
|
|
329
|
+
var tmp0_safe_receiver = _this__u8e3s4.j3u();
|
|
330
|
+
if (tmp0_safe_receiver == null)
|
|
331
|
+
null;
|
|
332
|
+
else {
|
|
333
|
+
// Inline function 'kotlin.let' call
|
|
334
|
+
throw tmp0_safe_receiver;
|
|
335
|
+
}
|
|
328
336
|
}
|
|
329
337
|
function readUTF8LineTo$checkLineEndingAllowed($lineEnding, lineEndingToCheck) {
|
|
330
338
|
if (!LineEndingMode__contains_impl_q5pr68($lineEnding, lineEndingToCheck)) {
|
|
331
|
-
throw IOException().
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
var reader$slambdaClass;
|
|
335
|
-
function reader$slambda() {
|
|
336
|
-
if (reader$slambdaClass === VOID) {
|
|
337
|
-
class $ extends CoroutineImpl() {
|
|
338
|
-
constructor($block, $channel, resultContinuation, $box) {
|
|
339
|
-
if ($box === VOID)
|
|
340
|
-
$box = {};
|
|
341
|
-
$box.a3m_1 = $block;
|
|
342
|
-
$box.b3m_1 = $channel;
|
|
343
|
-
super(resultContinuation, $box);
|
|
344
|
-
}
|
|
345
|
-
z37($this$launch, $completion) {
|
|
346
|
-
var tmp = this.d36($this$launch, $completion);
|
|
347
|
-
tmp.cc_1 = Unit_instance;
|
|
348
|
-
tmp.dc_1 = null;
|
|
349
|
-
return tmp.ic();
|
|
350
|
-
}
|
|
351
|
-
kd(p1, $completion) {
|
|
352
|
-
return this.z37((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
353
|
-
}
|
|
354
|
-
ic() {
|
|
355
|
-
var suspendResult = this.cc_1;
|
|
356
|
-
$sm: do
|
|
357
|
-
try {
|
|
358
|
-
var tmp = this.ac_1;
|
|
359
|
-
switch (tmp) {
|
|
360
|
-
case 0:
|
|
361
|
-
this.bc_1 = 8;
|
|
362
|
-
this.d3m_1 = Job(get_job(this.c3m_1.s1x()));
|
|
363
|
-
this.ac_1 = 1;
|
|
364
|
-
continue $sm;
|
|
365
|
-
case 1:
|
|
366
|
-
this.bc_1 = 4;
|
|
367
|
-
this.bc_1 = 3;
|
|
368
|
-
this.ac_1 = 2;
|
|
369
|
-
suspendResult = this.a3m_1(new (ReaderScope())(this.b3m_1, this.c3m_1.s1x().lm(this.d3m_1)), this);
|
|
370
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
371
|
-
return suspendResult;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
continue $sm;
|
|
375
|
-
case 2:
|
|
376
|
-
this.d3m_1.d25();
|
|
377
|
-
var tmp_0 = this;
|
|
378
|
-
var tmp_1;
|
|
379
|
-
if (get_job(this.c3m_1.s1x()).p1y()) {
|
|
380
|
-
this.b3m_1.l3b(get_job(this.c3m_1.s1x()).s1y());
|
|
381
|
-
tmp_1 = Unit_instance;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
tmp_0.e3m_1 = tmp_1;
|
|
385
|
-
this.bc_1 = 8;
|
|
386
|
-
this.ac_1 = 6;
|
|
387
|
-
continue $sm;
|
|
388
|
-
case 3:
|
|
389
|
-
this.bc_1 = 4;
|
|
390
|
-
var tmp_2 = this.dc_1;
|
|
391
|
-
if (tmp_2 instanceof Error) {
|
|
392
|
-
this.f3m_1 = this.dc_1;
|
|
393
|
-
var tmp_3 = this;
|
|
394
|
-
cancel(this.d3m_1, 'Exception thrown while reading from channel', this.f3m_1);
|
|
395
|
-
close(this.b3m_1, this.f3m_1);
|
|
396
|
-
tmp_3.e3m_1 = Unit_instance;
|
|
397
|
-
this.bc_1 = 8;
|
|
398
|
-
this.ac_1 = 6;
|
|
399
|
-
continue $sm;
|
|
400
|
-
} else {
|
|
401
|
-
throw this.dc_1;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
case 4:
|
|
405
|
-
this.bc_1 = 8;
|
|
406
|
-
this.g3m_1 = this.dc_1;
|
|
407
|
-
this.ac_1 = 5;
|
|
408
|
-
suspendResult = this.d3m_1.z1y(this);
|
|
409
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
410
|
-
return suspendResult;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
continue $sm;
|
|
414
|
-
case 5:
|
|
415
|
-
throw this.g3m_1;
|
|
416
|
-
case 6:
|
|
417
|
-
this.bc_1 = 8;
|
|
418
|
-
this.ac_1 = 7;
|
|
419
|
-
suspendResult = this.d3m_1.z1y(this);
|
|
420
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
421
|
-
return suspendResult;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
continue $sm;
|
|
425
|
-
case 7:
|
|
426
|
-
return Unit_instance;
|
|
427
|
-
case 8:
|
|
428
|
-
throw this.dc_1;
|
|
429
|
-
}
|
|
430
|
-
} catch ($p) {
|
|
431
|
-
var e = $p;
|
|
432
|
-
if (this.bc_1 === 8) {
|
|
433
|
-
throw e;
|
|
434
|
-
} else {
|
|
435
|
-
this.ac_1 = this.bc_1;
|
|
436
|
-
this.dc_1 = e;
|
|
437
|
-
}
|
|
438
|
-
}
|
|
439
|
-
while (true);
|
|
440
|
-
}
|
|
441
|
-
d36($this$launch, completion) {
|
|
442
|
-
var i = new (reader$slambda())(this.a3m_1, this.b3m_1, completion);
|
|
443
|
-
i.c3m_1 = $this$launch;
|
|
444
|
-
return i;
|
|
445
|
-
}
|
|
446
|
-
}
|
|
447
|
-
initMetadataForLambda($, VOID, VOID, [1]);
|
|
448
|
-
reader$slambdaClass = $;
|
|
449
|
-
}
|
|
450
|
-
return reader$slambdaClass;
|
|
451
|
-
}
|
|
452
|
-
function reader$slambda_0($block, $channel, resultContinuation) {
|
|
453
|
-
var i = new (reader$slambda())($block, $channel, resultContinuation);
|
|
454
|
-
var l = function ($this$launch, $completion) {
|
|
455
|
-
return i.z37($this$launch, $completion);
|
|
456
|
-
};
|
|
457
|
-
l.$arity = 1;
|
|
458
|
-
return l;
|
|
459
|
-
}
|
|
460
|
-
function reader$lambda($channel) {
|
|
461
|
-
return function (it) {
|
|
462
|
-
var tmp;
|
|
463
|
-
if (!(it == null) && !$channel.h3b()) {
|
|
464
|
-
$channel.l3b(it);
|
|
465
|
-
tmp = Unit_instance;
|
|
466
|
-
}
|
|
467
|
-
return Unit_instance;
|
|
468
|
-
};
|
|
469
|
-
}
|
|
470
|
-
var reader$slambdaClass_0;
|
|
471
|
-
function reader$slambda_1() {
|
|
472
|
-
if (reader$slambdaClass_0 === VOID) {
|
|
473
|
-
class $ extends CoroutineImpl() {
|
|
474
|
-
constructor($job, resultContinuation, $box) {
|
|
475
|
-
if ($box === VOID)
|
|
476
|
-
$box = {};
|
|
477
|
-
$box.p3m_1 = $job;
|
|
478
|
-
super(resultContinuation, $box);
|
|
479
|
-
}
|
|
480
|
-
q3m($completion) {
|
|
481
|
-
var tmp = this.r3m($completion);
|
|
482
|
-
tmp.cc_1 = Unit_instance;
|
|
483
|
-
tmp.dc_1 = null;
|
|
484
|
-
return tmp.ic();
|
|
485
|
-
}
|
|
486
|
-
pe($completion) {
|
|
487
|
-
return this.q3m($completion);
|
|
488
|
-
}
|
|
489
|
-
ic() {
|
|
490
|
-
var suspendResult = this.cc_1;
|
|
491
|
-
$sm: do
|
|
492
|
-
try {
|
|
493
|
-
var tmp = this.ac_1;
|
|
494
|
-
switch (tmp) {
|
|
495
|
-
case 0:
|
|
496
|
-
this.bc_1 = 2;
|
|
497
|
-
this.ac_1 = 1;
|
|
498
|
-
suspendResult = this.p3m_1.z1y(this);
|
|
499
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
500
|
-
return suspendResult;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
continue $sm;
|
|
504
|
-
case 1:
|
|
505
|
-
return Unit_instance;
|
|
506
|
-
case 2:
|
|
507
|
-
throw this.dc_1;
|
|
508
|
-
}
|
|
509
|
-
} catch ($p) {
|
|
510
|
-
var e = $p;
|
|
511
|
-
if (this.bc_1 === 2) {
|
|
512
|
-
throw e;
|
|
513
|
-
} else {
|
|
514
|
-
this.ac_1 = this.bc_1;
|
|
515
|
-
this.dc_1 = e;
|
|
516
|
-
}
|
|
517
|
-
}
|
|
518
|
-
while (true);
|
|
519
|
-
}
|
|
520
|
-
r3m(completion) {
|
|
521
|
-
return new (reader$slambda_1())(this.p3m_1, completion);
|
|
522
|
-
}
|
|
523
|
-
}
|
|
524
|
-
initMetadataForLambda($, VOID, VOID, [0]);
|
|
525
|
-
reader$slambdaClass_0 = $;
|
|
526
|
-
}
|
|
527
|
-
return reader$slambdaClass_0;
|
|
528
|
-
}
|
|
529
|
-
function reader$slambda_2($job, resultContinuation) {
|
|
530
|
-
var i = new (reader$slambda_1())($job, resultContinuation);
|
|
531
|
-
var l = function ($completion) {
|
|
532
|
-
return i.q3m($completion);
|
|
533
|
-
};
|
|
534
|
-
l.$arity = 0;
|
|
535
|
-
return l;
|
|
536
|
-
}
|
|
537
|
-
var $readRemainingCOROUTINE$Class;
|
|
538
|
-
function $readRemainingCOROUTINE$() {
|
|
539
|
-
if ($readRemainingCOROUTINE$Class === VOID) {
|
|
540
|
-
class $ extends CoroutineImpl() {
|
|
541
|
-
constructor(_this__u8e3s4, resultContinuation) {
|
|
542
|
-
super(resultContinuation);
|
|
543
|
-
this.q3d_1 = _this__u8e3s4;
|
|
544
|
-
}
|
|
545
|
-
ic() {
|
|
546
|
-
var suspendResult = this.cc_1;
|
|
547
|
-
$sm: do
|
|
548
|
-
try {
|
|
549
|
-
var tmp = this.ac_1;
|
|
550
|
-
switch (tmp) {
|
|
551
|
-
case 0:
|
|
552
|
-
this.bc_1 = 4;
|
|
553
|
-
this.r3d_1 = BytePacketBuilder();
|
|
554
|
-
this.ac_1 = 1;
|
|
555
|
-
continue $sm;
|
|
556
|
-
case 1:
|
|
557
|
-
if (!!this.q3d_1.h3b()) {
|
|
558
|
-
this.ac_1 = 3;
|
|
559
|
-
continue $sm;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
this.r3d_1.k2t(this.q3d_1.a3b());
|
|
563
|
-
this.ac_1 = 2;
|
|
564
|
-
suspendResult = this.q3d_1.j3b(VOID, this);
|
|
565
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
566
|
-
return suspendResult;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
continue $sm;
|
|
570
|
-
case 2:
|
|
571
|
-
this.ac_1 = 1;
|
|
572
|
-
continue $sm;
|
|
573
|
-
case 3:
|
|
574
|
-
rethrowCloseCauseIfNeeded(this.q3d_1);
|
|
575
|
-
return this.r3d_1.n2r();
|
|
576
|
-
case 4:
|
|
577
|
-
throw this.dc_1;
|
|
578
|
-
}
|
|
579
|
-
} catch ($p) {
|
|
580
|
-
var e = $p;
|
|
581
|
-
if (this.bc_1 === 4) {
|
|
582
|
-
throw e;
|
|
583
|
-
} else {
|
|
584
|
-
this.ac_1 = this.bc_1;
|
|
585
|
-
this.dc_1 = e;
|
|
586
|
-
}
|
|
587
|
-
}
|
|
588
|
-
while (true);
|
|
589
|
-
}
|
|
590
|
-
}
|
|
591
|
-
initMetadataForCoroutine($);
|
|
592
|
-
$readRemainingCOROUTINE$Class = $;
|
|
593
|
-
}
|
|
594
|
-
return $readRemainingCOROUTINE$Class;
|
|
595
|
-
}
|
|
596
|
-
var $discardCOROUTINE$Class;
|
|
597
|
-
function $discardCOROUTINE$() {
|
|
598
|
-
if ($discardCOROUTINE$Class === VOID) {
|
|
599
|
-
class $ extends CoroutineImpl() {
|
|
600
|
-
constructor(_this__u8e3s4, max, resultContinuation) {
|
|
601
|
-
super(resultContinuation);
|
|
602
|
-
this.a3e_1 = _this__u8e3s4;
|
|
603
|
-
this.b3e_1 = max;
|
|
604
|
-
}
|
|
605
|
-
ic() {
|
|
606
|
-
var suspendResult = this.cc_1;
|
|
607
|
-
$sm: do
|
|
608
|
-
try {
|
|
609
|
-
var tmp = this.ac_1;
|
|
610
|
-
switch (tmp) {
|
|
611
|
-
case 0:
|
|
612
|
-
this.bc_1 = 5;
|
|
613
|
-
this.c3e_1 = this.b3e_1;
|
|
614
|
-
this.ac_1 = 1;
|
|
615
|
-
continue $sm;
|
|
616
|
-
case 1:
|
|
617
|
-
if (!(this.c3e_1.a2(new (Long())(0, 0)) > 0 && !this.a3e_1.h3b())) {
|
|
618
|
-
this.ac_1 = 4;
|
|
619
|
-
continue $sm;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
if (get_availableForRead(this.a3e_1) === 0) {
|
|
623
|
-
this.ac_1 = 2;
|
|
624
|
-
suspendResult = this.a3e_1.j3b(VOID, this);
|
|
625
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
626
|
-
return suspendResult;
|
|
627
|
-
}
|
|
628
|
-
continue $sm;
|
|
629
|
-
} else {
|
|
630
|
-
this.ac_1 = 3;
|
|
631
|
-
continue $sm;
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
case 2:
|
|
635
|
-
this.ac_1 = 3;
|
|
636
|
-
continue $sm;
|
|
637
|
-
case 3:
|
|
638
|
-
var tmp0 = this.c3e_1;
|
|
639
|
-
var b = get_remaining(this.a3e_1.a3b());
|
|
640
|
-
var count = tmp0.a2(b) <= 0 ? tmp0 : b;
|
|
641
|
-
discard(this.a3e_1.a3b(), count);
|
|
642
|
-
this.c3e_1 = this.c3e_1.q3(count);
|
|
643
|
-
this.ac_1 = 1;
|
|
644
|
-
continue $sm;
|
|
645
|
-
case 4:
|
|
646
|
-
return this.b3e_1.q3(this.c3e_1);
|
|
647
|
-
case 5:
|
|
648
|
-
throw this.dc_1;
|
|
649
|
-
}
|
|
650
|
-
} catch ($p) {
|
|
651
|
-
var e = $p;
|
|
652
|
-
if (this.bc_1 === 5) {
|
|
653
|
-
throw e;
|
|
654
|
-
} else {
|
|
655
|
-
this.ac_1 = this.bc_1;
|
|
656
|
-
this.dc_1 = e;
|
|
657
|
-
}
|
|
658
|
-
}
|
|
659
|
-
while (true);
|
|
660
|
-
}
|
|
661
|
-
}
|
|
662
|
-
initMetadataForCoroutine($);
|
|
663
|
-
$discardCOROUTINE$Class = $;
|
|
664
|
-
}
|
|
665
|
-
return $discardCOROUTINE$Class;
|
|
666
|
-
}
|
|
667
|
-
var $copyAndCloseCOROUTINE$Class;
|
|
668
|
-
function $copyAndCloseCOROUTINE$() {
|
|
669
|
-
if ($copyAndCloseCOROUTINE$Class === VOID) {
|
|
670
|
-
class $ extends CoroutineImpl() {
|
|
671
|
-
constructor(_this__u8e3s4, channel, resultContinuation) {
|
|
672
|
-
super(resultContinuation);
|
|
673
|
-
this.l3e_1 = _this__u8e3s4;
|
|
674
|
-
this.m3e_1 = channel;
|
|
675
|
-
}
|
|
676
|
-
ic() {
|
|
677
|
-
var suspendResult = this.cc_1;
|
|
678
|
-
$sm: do
|
|
679
|
-
try {
|
|
680
|
-
var tmp = this.ac_1;
|
|
681
|
-
switch (tmp) {
|
|
682
|
-
case 0:
|
|
683
|
-
this.bc_1 = 11;
|
|
684
|
-
this.n3e_1 = new (Long())(0, 0);
|
|
685
|
-
this.ac_1 = 1;
|
|
686
|
-
continue $sm;
|
|
687
|
-
case 1:
|
|
688
|
-
this.bc_1 = 7;
|
|
689
|
-
this.bc_1 = 6;
|
|
690
|
-
this.ac_1 = 2;
|
|
691
|
-
continue $sm;
|
|
692
|
-
case 2:
|
|
693
|
-
if (!!this.l3e_1.h3b()) {
|
|
694
|
-
this.ac_1 = 5;
|
|
695
|
-
continue $sm;
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
this.n3e_1 = this.n3e_1.p3(this.l3e_1.a3b().v2s(this.m3e_1.d3b()));
|
|
699
|
-
this.ac_1 = 3;
|
|
700
|
-
suspendResult = this.m3e_1.z3a(this);
|
|
701
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
702
|
-
return suspendResult;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
continue $sm;
|
|
706
|
-
case 3:
|
|
707
|
-
this.ac_1 = 4;
|
|
708
|
-
suspendResult = this.l3e_1.j3b(VOID, this);
|
|
709
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
710
|
-
return suspendResult;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
continue $sm;
|
|
714
|
-
case 4:
|
|
715
|
-
this.ac_1 = 2;
|
|
716
|
-
continue $sm;
|
|
717
|
-
case 5:
|
|
718
|
-
var tmp_0 = this;
|
|
719
|
-
var tmp0_safe_receiver = this.l3e_1.f3b();
|
|
720
|
-
var tmp_1;
|
|
721
|
-
if (tmp0_safe_receiver == null) {
|
|
722
|
-
tmp_1 = null;
|
|
723
|
-
} else {
|
|
724
|
-
throw tmp0_safe_receiver;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
tmp_0.o3e_1 = tmp_1;
|
|
728
|
-
this.bc_1 = 11;
|
|
729
|
-
this.ac_1 = 9;
|
|
730
|
-
continue $sm;
|
|
731
|
-
case 6:
|
|
732
|
-
this.bc_1 = 7;
|
|
733
|
-
var tmp_2 = this.dc_1;
|
|
734
|
-
if (tmp_2 instanceof Error) {
|
|
735
|
-
this.p3e_1 = this.dc_1;
|
|
736
|
-
var tmp_3 = this;
|
|
737
|
-
this.l3e_1.l3b(this.p3e_1);
|
|
738
|
-
close(this.m3e_1, this.p3e_1);
|
|
739
|
-
throw this.p3e_1;
|
|
740
|
-
} else {
|
|
741
|
-
throw this.dc_1;
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
case 7:
|
|
745
|
-
this.bc_1 = 11;
|
|
746
|
-
this.q3e_1 = this.dc_1;
|
|
747
|
-
this.ac_1 = 8;
|
|
748
|
-
suspendResult = this.m3e_1.k3b(this);
|
|
749
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
750
|
-
return suspendResult;
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
continue $sm;
|
|
754
|
-
case 8:
|
|
755
|
-
throw this.q3e_1;
|
|
756
|
-
case 9:
|
|
757
|
-
this.r3e_1 = this.o3e_1;
|
|
758
|
-
this.bc_1 = 11;
|
|
759
|
-
this.ac_1 = 10;
|
|
760
|
-
suspendResult = this.m3e_1.k3b(this);
|
|
761
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
762
|
-
return suspendResult;
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
continue $sm;
|
|
766
|
-
case 10:
|
|
767
|
-
return this.n3e_1;
|
|
768
|
-
case 11:
|
|
769
|
-
throw this.dc_1;
|
|
770
|
-
}
|
|
771
|
-
} catch ($p) {
|
|
772
|
-
var e = $p;
|
|
773
|
-
if (this.bc_1 === 11) {
|
|
774
|
-
throw e;
|
|
775
|
-
} else {
|
|
776
|
-
this.ac_1 = this.bc_1;
|
|
777
|
-
this.dc_1 = e;
|
|
778
|
-
}
|
|
779
|
-
}
|
|
780
|
-
while (true);
|
|
781
|
-
}
|
|
782
|
-
}
|
|
783
|
-
initMetadataForCoroutine($);
|
|
784
|
-
$copyAndCloseCOROUTINE$Class = $;
|
|
785
|
-
}
|
|
786
|
-
return $copyAndCloseCOROUTINE$Class;
|
|
787
|
-
}
|
|
788
|
-
var $readAvailableCOROUTINE$Class;
|
|
789
|
-
function $readAvailableCOROUTINE$() {
|
|
790
|
-
if ($readAvailableCOROUTINE$Class === VOID) {
|
|
791
|
-
class $ extends CoroutineImpl() {
|
|
792
|
-
constructor(_this__u8e3s4, buffer, offset, length, resultContinuation) {
|
|
793
|
-
super(resultContinuation);
|
|
794
|
-
this.a3f_1 = _this__u8e3s4;
|
|
795
|
-
this.b3f_1 = buffer;
|
|
796
|
-
this.c3f_1 = offset;
|
|
797
|
-
this.d3f_1 = length;
|
|
798
|
-
}
|
|
799
|
-
ic() {
|
|
800
|
-
var suspendResult = this.cc_1;
|
|
801
|
-
$sm: do
|
|
802
|
-
try {
|
|
803
|
-
var tmp = this.ac_1;
|
|
804
|
-
switch (tmp) {
|
|
805
|
-
case 0:
|
|
806
|
-
this.bc_1 = 3;
|
|
807
|
-
if (this.a3f_1.h3b())
|
|
808
|
-
return -1;
|
|
809
|
-
if (this.a3f_1.a3b().o2r()) {
|
|
810
|
-
this.ac_1 = 1;
|
|
811
|
-
suspendResult = this.a3f_1.j3b(VOID, this);
|
|
812
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
813
|
-
return suspendResult;
|
|
814
|
-
}
|
|
815
|
-
continue $sm;
|
|
816
|
-
} else {
|
|
817
|
-
this.ac_1 = 2;
|
|
818
|
-
continue $sm;
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
case 1:
|
|
822
|
-
this.ac_1 = 2;
|
|
823
|
-
continue $sm;
|
|
824
|
-
case 2:
|
|
825
|
-
if (this.a3f_1.h3b())
|
|
826
|
-
return -1;
|
|
827
|
-
return readAvailable(this.a3f_1.a3b(), this.b3f_1, this.c3f_1, this.d3f_1);
|
|
828
|
-
case 3:
|
|
829
|
-
throw this.dc_1;
|
|
830
|
-
}
|
|
831
|
-
} catch ($p) {
|
|
832
|
-
var e = $p;
|
|
833
|
-
if (this.bc_1 === 3) {
|
|
834
|
-
throw e;
|
|
835
|
-
} else {
|
|
836
|
-
this.ac_1 = this.bc_1;
|
|
837
|
-
this.dc_1 = e;
|
|
838
|
-
}
|
|
839
|
-
}
|
|
840
|
-
while (true);
|
|
841
|
-
}
|
|
842
|
-
}
|
|
843
|
-
initMetadataForCoroutine($);
|
|
844
|
-
$readAvailableCOROUTINE$Class = $;
|
|
845
|
-
}
|
|
846
|
-
return $readAvailableCOROUTINE$Class;
|
|
847
|
-
}
|
|
848
|
-
var $readUTF8LineCOROUTINE$Class;
|
|
849
|
-
function $readUTF8LineCOROUTINE$() {
|
|
850
|
-
if ($readUTF8LineCOROUTINE$Class === VOID) {
|
|
851
|
-
class $ extends CoroutineImpl() {
|
|
852
|
-
constructor(_this__u8e3s4, max, resultContinuation) {
|
|
853
|
-
super(resultContinuation);
|
|
854
|
-
this.m3f_1 = _this__u8e3s4;
|
|
855
|
-
this.n3f_1 = max;
|
|
856
|
-
}
|
|
857
|
-
ic() {
|
|
858
|
-
var suspendResult = this.cc_1;
|
|
859
|
-
$sm: do
|
|
860
|
-
try {
|
|
861
|
-
var tmp = this.ac_1;
|
|
862
|
-
switch (tmp) {
|
|
863
|
-
case 0:
|
|
864
|
-
this.bc_1 = 2;
|
|
865
|
-
this.o3f_1 = StringBuilder().a1();
|
|
866
|
-
this.ac_1 = 1;
|
|
867
|
-
suspendResult = readUTF8LineTo(this.m3f_1, this.o3f_1, this.n3f_1, this);
|
|
868
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
869
|
-
return suspendResult;
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
continue $sm;
|
|
873
|
-
case 1:
|
|
874
|
-
var completed = suspendResult;
|
|
875
|
-
return !completed ? null : this.o3f_1.toString();
|
|
876
|
-
case 2:
|
|
877
|
-
throw this.dc_1;
|
|
878
|
-
}
|
|
879
|
-
} catch ($p) {
|
|
880
|
-
var e = $p;
|
|
881
|
-
if (this.bc_1 === 2) {
|
|
882
|
-
throw e;
|
|
883
|
-
} else {
|
|
884
|
-
this.ac_1 = this.bc_1;
|
|
885
|
-
this.dc_1 = e;
|
|
886
|
-
}
|
|
887
|
-
}
|
|
888
|
-
while (true);
|
|
889
|
-
}
|
|
890
|
-
}
|
|
891
|
-
initMetadataForCoroutine($);
|
|
892
|
-
$readUTF8LineCOROUTINE$Class = $;
|
|
893
|
-
}
|
|
894
|
-
return $readUTF8LineCOROUTINE$Class;
|
|
895
|
-
}
|
|
896
|
-
var $toByteArrayCOROUTINE$Class;
|
|
897
|
-
function $toByteArrayCOROUTINE$() {
|
|
898
|
-
if ($toByteArrayCOROUTINE$Class === VOID) {
|
|
899
|
-
class $ extends CoroutineImpl() {
|
|
900
|
-
constructor(_this__u8e3s4, resultContinuation) {
|
|
901
|
-
super(resultContinuation);
|
|
902
|
-
this.x3f_1 = _this__u8e3s4;
|
|
903
|
-
}
|
|
904
|
-
ic() {
|
|
905
|
-
var suspendResult = this.cc_1;
|
|
906
|
-
$sm: do
|
|
907
|
-
try {
|
|
908
|
-
var tmp = this.ac_1;
|
|
909
|
-
switch (tmp) {
|
|
910
|
-
case 0:
|
|
911
|
-
this.bc_1 = 2;
|
|
912
|
-
this.ac_1 = 1;
|
|
913
|
-
suspendResult = readBuffer(this.x3f_1, this);
|
|
914
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
915
|
-
return suspendResult;
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
continue $sm;
|
|
919
|
-
case 1:
|
|
920
|
-
var ARGUMENT = suspendResult;
|
|
921
|
-
return readBytes(ARGUMENT);
|
|
922
|
-
case 2:
|
|
923
|
-
throw this.dc_1;
|
|
924
|
-
}
|
|
925
|
-
} catch ($p) {
|
|
926
|
-
var e = $p;
|
|
927
|
-
if (this.bc_1 === 2) {
|
|
928
|
-
throw e;
|
|
929
|
-
} else {
|
|
930
|
-
this.ac_1 = this.bc_1;
|
|
931
|
-
this.dc_1 = e;
|
|
932
|
-
}
|
|
933
|
-
}
|
|
934
|
-
while (true);
|
|
935
|
-
}
|
|
936
|
-
}
|
|
937
|
-
initMetadataForCoroutine($);
|
|
938
|
-
$toByteArrayCOROUTINE$Class = $;
|
|
939
|
-
}
|
|
940
|
-
return $toByteArrayCOROUTINE$Class;
|
|
941
|
-
}
|
|
942
|
-
var $copyToCOROUTINE$Class;
|
|
943
|
-
function $copyToCOROUTINE$() {
|
|
944
|
-
if ($copyToCOROUTINE$Class === VOID) {
|
|
945
|
-
class $ extends CoroutineImpl() {
|
|
946
|
-
constructor(_this__u8e3s4, channel, limit, resultContinuation) {
|
|
947
|
-
super(resultContinuation);
|
|
948
|
-
this.g3g_1 = _this__u8e3s4;
|
|
949
|
-
this.h3g_1 = channel;
|
|
950
|
-
this.i3g_1 = limit;
|
|
951
|
-
}
|
|
952
|
-
ic() {
|
|
953
|
-
var suspendResult = this.cc_1;
|
|
954
|
-
$sm: do
|
|
955
|
-
try {
|
|
956
|
-
var tmp = this.ac_1;
|
|
957
|
-
switch (tmp) {
|
|
958
|
-
case 0:
|
|
959
|
-
this.bc_1 = 12;
|
|
960
|
-
this.j3g_1 = this.i3g_1;
|
|
961
|
-
this.ac_1 = 1;
|
|
962
|
-
continue $sm;
|
|
963
|
-
case 1:
|
|
964
|
-
this.bc_1 = 8;
|
|
965
|
-
this.bc_1 = 7;
|
|
966
|
-
this.ac_1 = 2;
|
|
967
|
-
continue $sm;
|
|
968
|
-
case 2:
|
|
969
|
-
if (!(!this.g3g_1.h3b() && this.j3g_1.a2(new (Long())(0, 0)) > 0)) {
|
|
970
|
-
this.ac_1 = 6;
|
|
971
|
-
continue $sm;
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
if (this.g3g_1.a3b().o2r()) {
|
|
975
|
-
this.ac_1 = 3;
|
|
976
|
-
suspendResult = this.g3g_1.j3b(VOID, this);
|
|
977
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
978
|
-
return suspendResult;
|
|
979
|
-
}
|
|
980
|
-
continue $sm;
|
|
981
|
-
} else {
|
|
982
|
-
this.ac_1 = 4;
|
|
983
|
-
continue $sm;
|
|
984
|
-
}
|
|
985
|
-
|
|
986
|
-
case 3:
|
|
987
|
-
this.ac_1 = 4;
|
|
988
|
-
continue $sm;
|
|
989
|
-
case 4:
|
|
990
|
-
var tmp_0 = this;
|
|
991
|
-
var tmp0 = this.j3g_1;
|
|
992
|
-
var b = get_remaining(this.g3g_1.a3b());
|
|
993
|
-
tmp_0.l3g_1 = tmp0.a2(b) <= 0 ? tmp0 : b;
|
|
994
|
-
this.g3g_1.a3b().u2s(this.h3g_1.d3b(), this.l3g_1);
|
|
995
|
-
this.j3g_1 = this.j3g_1.q3(this.l3g_1);
|
|
996
|
-
this.ac_1 = 5;
|
|
997
|
-
suspendResult = this.h3g_1.z3a(this);
|
|
998
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
999
|
-
return suspendResult;
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
continue $sm;
|
|
1003
|
-
case 5:
|
|
1004
|
-
this.ac_1 = 2;
|
|
1005
|
-
continue $sm;
|
|
1006
|
-
case 6:
|
|
1007
|
-
this.k3g_1 = Unit_instance;
|
|
1008
|
-
this.bc_1 = 12;
|
|
1009
|
-
this.ac_1 = 10;
|
|
1010
|
-
continue $sm;
|
|
1011
|
-
case 7:
|
|
1012
|
-
this.bc_1 = 8;
|
|
1013
|
-
var tmp_1 = this.dc_1;
|
|
1014
|
-
if (tmp_1 instanceof Error) {
|
|
1015
|
-
this.m3g_1 = this.dc_1;
|
|
1016
|
-
var tmp_2 = this;
|
|
1017
|
-
this.g3g_1.l3b(this.m3g_1);
|
|
1018
|
-
close(this.h3g_1, this.m3g_1);
|
|
1019
|
-
throw this.m3g_1;
|
|
1020
|
-
} else {
|
|
1021
|
-
throw this.dc_1;
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
case 8:
|
|
1025
|
-
this.bc_1 = 12;
|
|
1026
|
-
this.n3g_1 = this.dc_1;
|
|
1027
|
-
this.ac_1 = 9;
|
|
1028
|
-
suspendResult = this.h3g_1.z3a(this);
|
|
1029
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1030
|
-
return suspendResult;
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
continue $sm;
|
|
1034
|
-
case 9:
|
|
1035
|
-
throw this.n3g_1;
|
|
1036
|
-
case 10:
|
|
1037
|
-
this.bc_1 = 12;
|
|
1038
|
-
this.ac_1 = 11;
|
|
1039
|
-
suspendResult = this.h3g_1.z3a(this);
|
|
1040
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1041
|
-
return suspendResult;
|
|
1042
|
-
}
|
|
1043
|
-
|
|
1044
|
-
continue $sm;
|
|
1045
|
-
case 11:
|
|
1046
|
-
return this.i3g_1.q3(this.j3g_1);
|
|
1047
|
-
case 12:
|
|
1048
|
-
throw this.dc_1;
|
|
1049
|
-
}
|
|
1050
|
-
} catch ($p) {
|
|
1051
|
-
var e = $p;
|
|
1052
|
-
if (this.bc_1 === 12) {
|
|
1053
|
-
throw e;
|
|
1054
|
-
} else {
|
|
1055
|
-
this.ac_1 = this.bc_1;
|
|
1056
|
-
this.dc_1 = e;
|
|
1057
|
-
}
|
|
1058
|
-
}
|
|
1059
|
-
while (true);
|
|
1060
|
-
}
|
|
1061
|
-
}
|
|
1062
|
-
initMetadataForCoroutine($);
|
|
1063
|
-
$copyToCOROUTINE$Class = $;
|
|
1064
|
-
}
|
|
1065
|
-
return $copyToCOROUTINE$Class;
|
|
1066
|
-
}
|
|
1067
|
-
var $readBufferCOROUTINE$Class;
|
|
1068
|
-
function $readBufferCOROUTINE$() {
|
|
1069
|
-
if ($readBufferCOROUTINE$Class === VOID) {
|
|
1070
|
-
class $ extends CoroutineImpl() {
|
|
1071
|
-
constructor(_this__u8e3s4, resultContinuation) {
|
|
1072
|
-
super(resultContinuation);
|
|
1073
|
-
this.u3h_1 = _this__u8e3s4;
|
|
1074
|
-
}
|
|
1075
|
-
ic() {
|
|
1076
|
-
var suspendResult = this.cc_1;
|
|
1077
|
-
$sm: do
|
|
1078
|
-
try {
|
|
1079
|
-
var tmp = this.ac_1;
|
|
1080
|
-
switch (tmp) {
|
|
1081
|
-
case 0:
|
|
1082
|
-
this.bc_1 = 4;
|
|
1083
|
-
this.v3h_1 = new (Buffer())();
|
|
1084
|
-
this.ac_1 = 1;
|
|
1085
|
-
continue $sm;
|
|
1086
|
-
case 1:
|
|
1087
|
-
if (!!this.u3h_1.h3b()) {
|
|
1088
|
-
this.ac_1 = 3;
|
|
1089
|
-
continue $sm;
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
|
-
this.v3h_1.k2t(this.u3h_1.a3b());
|
|
1093
|
-
this.ac_1 = 2;
|
|
1094
|
-
suspendResult = this.u3h_1.j3b(VOID, this);
|
|
1095
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1096
|
-
return suspendResult;
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
continue $sm;
|
|
1100
|
-
case 2:
|
|
1101
|
-
this.ac_1 = 1;
|
|
1102
|
-
continue $sm;
|
|
1103
|
-
case 3:
|
|
1104
|
-
var tmp0_safe_receiver = this.u3h_1.f3b();
|
|
1105
|
-
if (tmp0_safe_receiver == null)
|
|
1106
|
-
null;
|
|
1107
|
-
else {
|
|
1108
|
-
throw tmp0_safe_receiver;
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
return this.v3h_1;
|
|
1112
|
-
case 4:
|
|
1113
|
-
throw this.dc_1;
|
|
1114
|
-
}
|
|
1115
|
-
} catch ($p) {
|
|
1116
|
-
var e = $p;
|
|
1117
|
-
if (this.bc_1 === 4) {
|
|
1118
|
-
throw e;
|
|
1119
|
-
} else {
|
|
1120
|
-
this.ac_1 = this.bc_1;
|
|
1121
|
-
this.dc_1 = e;
|
|
1122
|
-
}
|
|
1123
|
-
}
|
|
1124
|
-
while (true);
|
|
1125
|
-
}
|
|
1126
|
-
}
|
|
1127
|
-
initMetadataForCoroutine($);
|
|
1128
|
-
$readBufferCOROUTINE$Class = $;
|
|
1129
|
-
}
|
|
1130
|
-
return $readBufferCOROUTINE$Class;
|
|
1131
|
-
}
|
|
1132
|
-
var $readUTF8LineToCOROUTINE$Class;
|
|
1133
|
-
function $readUTF8LineToCOROUTINE$() {
|
|
1134
|
-
if ($readUTF8LineToCOROUTINE$Class === VOID) {
|
|
1135
|
-
class $ extends CoroutineImpl() {
|
|
1136
|
-
constructor(_this__u8e3s4, out, max, lineEnding, resultContinuation) {
|
|
1137
|
-
super(resultContinuation);
|
|
1138
|
-
this.e3i_1 = _this__u8e3s4;
|
|
1139
|
-
this.f3i_1 = out;
|
|
1140
|
-
this.g3i_1 = max;
|
|
1141
|
-
this.h3i_1 = lineEnding;
|
|
1142
|
-
}
|
|
1143
|
-
ic() {
|
|
1144
|
-
var suspendResult = this.cc_1;
|
|
1145
|
-
$sm: do
|
|
1146
|
-
try {
|
|
1147
|
-
var tmp = this.ac_1;
|
|
1148
|
-
switch (tmp) {
|
|
1149
|
-
case 0:
|
|
1150
|
-
this.bc_1 = 21;
|
|
1151
|
-
if (this.e3i_1.a3b().o2r()) {
|
|
1152
|
-
this.ac_1 = 1;
|
|
1153
|
-
suspendResult = this.e3i_1.j3b(VOID, this);
|
|
1154
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1155
|
-
return suspendResult;
|
|
1156
|
-
}
|
|
1157
|
-
continue $sm;
|
|
1158
|
-
} else {
|
|
1159
|
-
this.ac_1 = 2;
|
|
1160
|
-
continue $sm;
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
case 1:
|
|
1164
|
-
this.ac_1 = 2;
|
|
1165
|
-
continue $sm;
|
|
1166
|
-
case 2:
|
|
1167
|
-
if (this.e3i_1.h3b())
|
|
1168
|
-
return false;
|
|
1169
|
-
var tmp_0 = this;
|
|
1170
|
-
tmp_0.i3i_1 = new (Buffer())();
|
|
1171
|
-
this.ac_1 = 3;
|
|
1172
|
-
continue $sm;
|
|
1173
|
-
case 3:
|
|
1174
|
-
this.k3i_1 = this.i3i_1;
|
|
1175
|
-
this.l3i_1 = null;
|
|
1176
|
-
this.ac_1 = 4;
|
|
1177
|
-
continue $sm;
|
|
1178
|
-
case 4:
|
|
1179
|
-
this.ac_1 = 5;
|
|
1180
|
-
continue $sm;
|
|
1181
|
-
case 5:
|
|
1182
|
-
this.ac_1 = 6;
|
|
1183
|
-
continue $sm;
|
|
1184
|
-
case 6:
|
|
1185
|
-
this.bc_1 = 18;
|
|
1186
|
-
this.bc_1 = 17;
|
|
1187
|
-
var tmp_1 = this;
|
|
1188
|
-
tmp_1.n3i_1 = this.k3i_1;
|
|
1189
|
-
this.o3i_1 = this.n3i_1;
|
|
1190
|
-
this.ac_1 = 7;
|
|
1191
|
-
continue $sm;
|
|
1192
|
-
case 7:
|
|
1193
|
-
if (!!this.e3i_1.h3b()) {
|
|
1194
|
-
this.ac_1 = 14;
|
|
1195
|
-
continue $sm;
|
|
1196
|
-
}
|
|
1197
|
-
|
|
1198
|
-
this.ac_1 = 8;
|
|
1199
|
-
continue $sm;
|
|
1200
|
-
case 8:
|
|
1201
|
-
if (!!this.e3i_1.a3b().o2r()) {
|
|
1202
|
-
this.ac_1 = 12;
|
|
1203
|
-
continue $sm;
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
this.p3i_1 = this.e3i_1.a3b().r2r();
|
|
1207
|
-
if (this.p3i_1 === 13) {
|
|
1208
|
-
if (this.e3i_1.a3b().o2r()) {
|
|
1209
|
-
this.ac_1 = 10;
|
|
1210
|
-
suspendResult = this.e3i_1.j3b(VOID, this);
|
|
1211
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1212
|
-
return suspendResult;
|
|
1213
|
-
}
|
|
1214
|
-
continue $sm;
|
|
1215
|
-
} else {
|
|
1216
|
-
this.ac_1 = 11;
|
|
1217
|
-
continue $sm;
|
|
1218
|
-
}
|
|
1219
|
-
} else {
|
|
1220
|
-
if (this.p3i_1 === 10) {
|
|
1221
|
-
readUTF8LineTo$checkLineEndingAllowed(this.h3i_1, Companion_getInstance().i3h_1);
|
|
1222
|
-
this.f3i_1.b1(readString(this.o3i_1));
|
|
1223
|
-
this.m3i_1 = true;
|
|
1224
|
-
this.bc_1 = 21;
|
|
1225
|
-
this.ac_1 = 15;
|
|
1226
|
-
continue $sm;
|
|
1227
|
-
} else {
|
|
1228
|
-
this.o3i_1.l2t(this.p3i_1);
|
|
1229
|
-
this.ac_1 = 9;
|
|
1230
|
-
continue $sm;
|
|
1231
|
-
}
|
|
1232
|
-
}
|
|
1233
|
-
|
|
1234
|
-
case 9:
|
|
1235
|
-
this.ac_1 = 8;
|
|
1236
|
-
continue $sm;
|
|
1237
|
-
case 10:
|
|
1238
|
-
this.ac_1 = 11;
|
|
1239
|
-
continue $sm;
|
|
1240
|
-
case 11:
|
|
1241
|
-
if (this.e3i_1.a3b().n2r().n2s(new (Long())(0, 0)) === 10) {
|
|
1242
|
-
readUTF8LineTo$checkLineEndingAllowed(this.h3i_1, Companion_getInstance().j3h_1);
|
|
1243
|
-
discard(this.e3i_1.a3b(), new (Long())(1, 0));
|
|
1244
|
-
} else {
|
|
1245
|
-
readUTF8LineTo$checkLineEndingAllowed(this.h3i_1, Companion_getInstance().h3h_1);
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
this.f3i_1.b1(readString(this.o3i_1));
|
|
1249
|
-
this.m3i_1 = true;
|
|
1250
|
-
this.bc_1 = 21;
|
|
1251
|
-
this.ac_1 = 15;
|
|
1252
|
-
continue $sm;
|
|
1253
|
-
case 12:
|
|
1254
|
-
if (this.o3i_1.i1().a2(toLong(this.g3i_1)) >= 0) {
|
|
1255
|
-
throw TooLongLineException().w3m('Line exceeds limit of ' + this.g3i_1 + ' characters');
|
|
1256
|
-
}
|
|
1257
|
-
|
|
1258
|
-
this.ac_1 = 13;
|
|
1259
|
-
suspendResult = this.e3i_1.j3b(VOID, this);
|
|
1260
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1261
|
-
return suspendResult;
|
|
1262
|
-
}
|
|
1263
|
-
|
|
1264
|
-
continue $sm;
|
|
1265
|
-
case 13:
|
|
1266
|
-
this.ac_1 = 7;
|
|
1267
|
-
continue $sm;
|
|
1268
|
-
case 14:
|
|
1269
|
-
var tmp_2 = this;
|
|
1270
|
-
var this_0 = this.o3i_1.i1().a2(new (Long())(0, 0)) > 0;
|
|
1271
|
-
if (this_0) {
|
|
1272
|
-
this.f3i_1.b1(readString(this.o3i_1));
|
|
1273
|
-
}
|
|
1274
|
-
|
|
1275
|
-
tmp_2.m3i_1 = this_0;
|
|
1276
|
-
this.bc_1 = 21;
|
|
1277
|
-
this.ac_1 = 15;
|
|
1278
|
-
var tmp_3 = this;
|
|
1279
|
-
continue $sm;
|
|
1280
|
-
case 15:
|
|
1281
|
-
var tmp_4 = this.m3i_1;
|
|
1282
|
-
this.bc_1 = 21;
|
|
1283
|
-
closeFinally(this.k3i_1, this.l3i_1);
|
|
1284
|
-
return tmp_4;
|
|
1285
|
-
case 16:
|
|
1286
|
-
this.bc_1 = 21;
|
|
1287
|
-
var tmp_5 = this;
|
|
1288
|
-
closeFinally(this.k3i_1, this.l3i_1);
|
|
1289
|
-
tmp_5.j3i_1 = Unit_instance;
|
|
1290
|
-
this.ac_1 = 20;
|
|
1291
|
-
continue $sm;
|
|
1292
|
-
case 17:
|
|
1293
|
-
this.bc_1 = 18;
|
|
1294
|
-
var tmp_6 = this.dc_1;
|
|
1295
|
-
if (tmp_6 instanceof Error) {
|
|
1296
|
-
var e = this.dc_1;
|
|
1297
|
-
var tmp_7 = this;
|
|
1298
|
-
this.l3i_1 = e;
|
|
1299
|
-
throw e;
|
|
1300
|
-
} else {
|
|
1301
|
-
throw this.dc_1;
|
|
1302
|
-
}
|
|
1303
|
-
|
|
1304
|
-
case 18:
|
|
1305
|
-
this.bc_1 = 21;
|
|
1306
|
-
var t = this.dc_1;
|
|
1307
|
-
closeFinally(this.k3i_1, this.l3i_1);
|
|
1308
|
-
throw t;
|
|
1309
|
-
case 19:
|
|
1310
|
-
this.bc_1 = 21;
|
|
1311
|
-
closeFinally(this.k3i_1, this.l3i_1);
|
|
1312
|
-
if (false) {
|
|
1313
|
-
this.ac_1 = 3;
|
|
1314
|
-
continue $sm;
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1317
|
-
this.ac_1 = 20;
|
|
1318
|
-
continue $sm;
|
|
1319
|
-
case 20:
|
|
1320
|
-
return Unit_instance;
|
|
1321
|
-
case 21:
|
|
1322
|
-
throw this.dc_1;
|
|
1323
|
-
}
|
|
1324
|
-
} catch ($p) {
|
|
1325
|
-
var e_0 = $p;
|
|
1326
|
-
if (this.bc_1 === 21) {
|
|
1327
|
-
throw e_0;
|
|
1328
|
-
} else {
|
|
1329
|
-
this.ac_1 = this.bc_1;
|
|
1330
|
-
this.dc_1 = e_0;
|
|
1331
|
-
}
|
|
1332
|
-
}
|
|
1333
|
-
while (true);
|
|
1334
|
-
}
|
|
1335
|
-
}
|
|
1336
|
-
initMetadataForCoroutine($);
|
|
1337
|
-
$readUTF8LineToCOROUTINE$Class = $;
|
|
1338
|
-
}
|
|
1339
|
-
return $readUTF8LineToCOROUTINE$Class;
|
|
1340
|
-
}
|
|
1341
|
-
var $skipIfFoundCOROUTINE$Class;
|
|
1342
|
-
function $skipIfFoundCOROUTINE$() {
|
|
1343
|
-
if ($skipIfFoundCOROUTINE$Class === VOID) {
|
|
1344
|
-
class $ extends CoroutineImpl() {
|
|
1345
|
-
constructor(_this__u8e3s4, byteString, resultContinuation) {
|
|
1346
|
-
super(resultContinuation);
|
|
1347
|
-
this.y3i_1 = _this__u8e3s4;
|
|
1348
|
-
this.z3i_1 = byteString;
|
|
1349
|
-
}
|
|
1350
|
-
ic() {
|
|
1351
|
-
var suspendResult = this.cc_1;
|
|
1352
|
-
$sm: do
|
|
1353
|
-
try {
|
|
1354
|
-
var tmp = this.ac_1;
|
|
1355
|
-
switch (tmp) {
|
|
1356
|
-
case 0:
|
|
1357
|
-
this.bc_1 = 4;
|
|
1358
|
-
this.ac_1 = 1;
|
|
1359
|
-
suspendResult = peek(this.y3i_1, this.z3i_1.i1(), this);
|
|
1360
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1361
|
-
return suspendResult;
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
|
-
continue $sm;
|
|
1365
|
-
case 1:
|
|
1366
|
-
this.a3j_1 = suspendResult;
|
|
1367
|
-
if (equals(this.a3j_1, this.z3i_1)) {
|
|
1368
|
-
this.ac_1 = 3;
|
|
1369
|
-
suspendResult = discard_0(this.y3i_1, toLong(this.z3i_1.i1()), this);
|
|
1370
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1371
|
-
return suspendResult;
|
|
1372
|
-
}
|
|
1373
|
-
continue $sm;
|
|
1374
|
-
} else {
|
|
1375
|
-
this.ac_1 = 2;
|
|
1376
|
-
continue $sm;
|
|
1377
|
-
}
|
|
1378
|
-
|
|
1379
|
-
case 2:
|
|
1380
|
-
return false;
|
|
1381
|
-
case 3:
|
|
1382
|
-
return true;
|
|
1383
|
-
case 4:
|
|
1384
|
-
throw this.dc_1;
|
|
1385
|
-
}
|
|
1386
|
-
} catch ($p) {
|
|
1387
|
-
var e = $p;
|
|
1388
|
-
if (this.bc_1 === 4) {
|
|
1389
|
-
throw e;
|
|
1390
|
-
} else {
|
|
1391
|
-
this.ac_1 = this.bc_1;
|
|
1392
|
-
this.dc_1 = e;
|
|
1393
|
-
}
|
|
1394
|
-
}
|
|
1395
|
-
while (true);
|
|
1396
|
-
}
|
|
1397
|
-
}
|
|
1398
|
-
initMetadataForCoroutine($);
|
|
1399
|
-
$skipIfFoundCOROUTINE$Class = $;
|
|
1400
|
-
}
|
|
1401
|
-
return $skipIfFoundCOROUTINE$Class;
|
|
1402
|
-
}
|
|
1403
|
-
var $readPacketCOROUTINE$Class;
|
|
1404
|
-
function $readPacketCOROUTINE$() {
|
|
1405
|
-
if ($readPacketCOROUTINE$Class === VOID) {
|
|
1406
|
-
class $ extends CoroutineImpl() {
|
|
1407
|
-
constructor(_this__u8e3s4, packet, resultContinuation) {
|
|
1408
|
-
super(resultContinuation);
|
|
1409
|
-
this.j3j_1 = _this__u8e3s4;
|
|
1410
|
-
this.k3j_1 = packet;
|
|
1411
|
-
}
|
|
1412
|
-
ic() {
|
|
1413
|
-
var suspendResult = this.cc_1;
|
|
1414
|
-
$sm: do
|
|
1415
|
-
try {
|
|
1416
|
-
var tmp = this.ac_1;
|
|
1417
|
-
switch (tmp) {
|
|
1418
|
-
case 0:
|
|
1419
|
-
this.bc_1 = 6;
|
|
1420
|
-
this.l3j_1 = new (Buffer())();
|
|
1421
|
-
this.ac_1 = 1;
|
|
1422
|
-
continue $sm;
|
|
1423
|
-
case 1:
|
|
1424
|
-
if (!(this.l3j_1.i1().a2(toLong(this.k3j_1)) < 0)) {
|
|
1425
|
-
this.ac_1 = 5;
|
|
1426
|
-
continue $sm;
|
|
1427
|
-
}
|
|
1428
|
-
|
|
1429
|
-
if (this.j3j_1.a3b().o2r()) {
|
|
1430
|
-
this.ac_1 = 2;
|
|
1431
|
-
suspendResult = this.j3j_1.j3b(VOID, this);
|
|
1432
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1433
|
-
return suspendResult;
|
|
1434
|
-
}
|
|
1435
|
-
continue $sm;
|
|
1436
|
-
} else {
|
|
1437
|
-
this.ac_1 = 3;
|
|
1438
|
-
continue $sm;
|
|
1439
|
-
}
|
|
1440
|
-
|
|
1441
|
-
case 2:
|
|
1442
|
-
this.ac_1 = 3;
|
|
1443
|
-
continue $sm;
|
|
1444
|
-
case 3:
|
|
1445
|
-
if (this.j3j_1.h3b()) {
|
|
1446
|
-
this.ac_1 = 5;
|
|
1447
|
-
continue $sm;
|
|
1448
|
-
} else {
|
|
1449
|
-
this.ac_1 = 4;
|
|
1450
|
-
continue $sm;
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
|
-
case 4:
|
|
1454
|
-
if (get_remaining(this.j3j_1.a3b()).a2(numberToLong(this.k3j_1).q3(this.l3j_1.i1())) > 0) {
|
|
1455
|
-
this.j3j_1.a3b().u2s(this.l3j_1, numberToLong(this.k3j_1).q3(this.l3j_1.i1()));
|
|
1456
|
-
} else {
|
|
1457
|
-
this.j3j_1.a3b().v2s(this.l3j_1);
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
|
-
this.ac_1 = 1;
|
|
1461
|
-
continue $sm;
|
|
1462
|
-
case 5:
|
|
1463
|
-
if (this.l3j_1.i1().a2(toLong(this.k3j_1)) < 0) {
|
|
1464
|
-
throw EOFException().m2r('Not enough data available, required ' + this.k3j_1 + ' bytes but only ' + this.l3j_1.i1().toString() + ' available');
|
|
1465
|
-
}
|
|
1466
|
-
|
|
1467
|
-
return this.l3j_1;
|
|
1468
|
-
case 6:
|
|
1469
|
-
throw this.dc_1;
|
|
1470
|
-
}
|
|
1471
|
-
} catch ($p) {
|
|
1472
|
-
var e = $p;
|
|
1473
|
-
if (this.bc_1 === 6) {
|
|
1474
|
-
throw e;
|
|
1475
|
-
} else {
|
|
1476
|
-
this.ac_1 = this.bc_1;
|
|
1477
|
-
this.dc_1 = e;
|
|
1478
|
-
}
|
|
1479
|
-
}
|
|
1480
|
-
while (true);
|
|
1481
|
-
}
|
|
1482
|
-
}
|
|
1483
|
-
initMetadataForCoroutine($);
|
|
1484
|
-
$readPacketCOROUTINE$Class = $;
|
|
1485
|
-
}
|
|
1486
|
-
return $readPacketCOROUTINE$Class;
|
|
1487
|
-
}
|
|
1488
|
-
var $readByteCOROUTINE$Class;
|
|
1489
|
-
function $readByteCOROUTINE$() {
|
|
1490
|
-
if ($readByteCOROUTINE$Class === VOID) {
|
|
1491
|
-
class $ extends CoroutineImpl() {
|
|
1492
|
-
constructor(_this__u8e3s4, resultContinuation) {
|
|
1493
|
-
super(resultContinuation);
|
|
1494
|
-
this.u3j_1 = _this__u8e3s4;
|
|
1495
|
-
}
|
|
1496
|
-
ic() {
|
|
1497
|
-
var suspendResult = this.cc_1;
|
|
1498
|
-
$sm: do
|
|
1499
|
-
try {
|
|
1500
|
-
var tmp = this.ac_1;
|
|
1501
|
-
switch (tmp) {
|
|
1502
|
-
case 0:
|
|
1503
|
-
this.bc_1 = 4;
|
|
1504
|
-
this.v3j_1 = this.u3j_1.a3b();
|
|
1505
|
-
if (this.v3j_1.o2r()) {
|
|
1506
|
-
this.ac_1 = 1;
|
|
1507
|
-
suspendResult = this.u3j_1.j3b(VOID, this);
|
|
1508
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1509
|
-
return suspendResult;
|
|
1510
|
-
}
|
|
1511
|
-
continue $sm;
|
|
1512
|
-
} else {
|
|
1513
|
-
this.w3j_1 = false;
|
|
1514
|
-
this.ac_1 = 2;
|
|
1515
|
-
continue $sm;
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
|
-
case 1:
|
|
1519
|
-
var ARGUMENT = suspendResult;
|
|
1520
|
-
this.w3j_1 = !ARGUMENT;
|
|
1521
|
-
this.ac_1 = 2;
|
|
1522
|
-
continue $sm;
|
|
1523
|
-
case 2:
|
|
1524
|
-
if (this.w3j_1) {
|
|
1525
|
-
throw EOFException().m2r('Not enough data available');
|
|
1526
|
-
} else {
|
|
1527
|
-
this.ac_1 = 3;
|
|
1528
|
-
continue $sm;
|
|
1529
|
-
}
|
|
1530
|
-
|
|
1531
|
-
case 3:
|
|
1532
|
-
return this.v3j_1.r2r();
|
|
1533
|
-
case 4:
|
|
1534
|
-
throw this.dc_1;
|
|
1535
|
-
}
|
|
1536
|
-
} catch ($p) {
|
|
1537
|
-
var e = $p;
|
|
1538
|
-
if (this.bc_1 === 4) {
|
|
1539
|
-
throw e;
|
|
1540
|
-
} else {
|
|
1541
|
-
this.ac_1 = this.bc_1;
|
|
1542
|
-
this.dc_1 = e;
|
|
1543
|
-
}
|
|
1544
|
-
}
|
|
1545
|
-
while (true);
|
|
1546
|
-
}
|
|
1547
|
-
}
|
|
1548
|
-
initMetadataForCoroutine($);
|
|
1549
|
-
$readByteCOROUTINE$Class = $;
|
|
1550
|
-
}
|
|
1551
|
-
return $readByteCOROUTINE$Class;
|
|
1552
|
-
}
|
|
1553
|
-
var $readShortCOROUTINE$Class;
|
|
1554
|
-
function $readShortCOROUTINE$() {
|
|
1555
|
-
if ($readShortCOROUTINE$Class === VOID) {
|
|
1556
|
-
class $ extends CoroutineImpl() {
|
|
1557
|
-
constructor(_this__u8e3s4, resultContinuation) {
|
|
1558
|
-
super(resultContinuation);
|
|
1559
|
-
this.f3k_1 = _this__u8e3s4;
|
|
1560
|
-
}
|
|
1561
|
-
ic() {
|
|
1562
|
-
var suspendResult = this.cc_1;
|
|
1563
|
-
$sm: do
|
|
1564
|
-
try {
|
|
1565
|
-
var tmp = this.ac_1;
|
|
1566
|
-
switch (tmp) {
|
|
1567
|
-
case 0:
|
|
1568
|
-
this.bc_1 = 2;
|
|
1569
|
-
this.ac_1 = 1;
|
|
1570
|
-
suspendResult = awaitUntilReadable(this.f3k_1, 2, this);
|
|
1571
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1572
|
-
return suspendResult;
|
|
1573
|
-
}
|
|
1574
|
-
|
|
1575
|
-
continue $sm;
|
|
1576
|
-
case 1:
|
|
1577
|
-
return this.f3k_1.a3b().b2s();
|
|
1578
|
-
case 2:
|
|
1579
|
-
throw this.dc_1;
|
|
1580
|
-
}
|
|
1581
|
-
} catch ($p) {
|
|
1582
|
-
var e = $p;
|
|
1583
|
-
if (this.bc_1 === 2) {
|
|
1584
|
-
throw e;
|
|
1585
|
-
} else {
|
|
1586
|
-
this.ac_1 = this.bc_1;
|
|
1587
|
-
this.dc_1 = e;
|
|
1588
|
-
}
|
|
1589
|
-
}
|
|
1590
|
-
while (true);
|
|
1591
|
-
}
|
|
1592
|
-
}
|
|
1593
|
-
initMetadataForCoroutine($);
|
|
1594
|
-
$readShortCOROUTINE$Class = $;
|
|
1595
|
-
}
|
|
1596
|
-
return $readShortCOROUTINE$Class;
|
|
1597
|
-
}
|
|
1598
|
-
var $readLongCOROUTINE$Class;
|
|
1599
|
-
function $readLongCOROUTINE$() {
|
|
1600
|
-
if ($readLongCOROUTINE$Class === VOID) {
|
|
1601
|
-
class $ extends CoroutineImpl() {
|
|
1602
|
-
constructor(_this__u8e3s4, resultContinuation) {
|
|
1603
|
-
super(resultContinuation);
|
|
1604
|
-
this.o3k_1 = _this__u8e3s4;
|
|
1605
|
-
}
|
|
1606
|
-
ic() {
|
|
1607
|
-
var suspendResult = this.cc_1;
|
|
1608
|
-
$sm: do
|
|
1609
|
-
try {
|
|
1610
|
-
var tmp = this.ac_1;
|
|
1611
|
-
switch (tmp) {
|
|
1612
|
-
case 0:
|
|
1613
|
-
this.bc_1 = 2;
|
|
1614
|
-
this.ac_1 = 1;
|
|
1615
|
-
suspendResult = awaitUntilReadable(this.o3k_1, 8, this);
|
|
1616
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1617
|
-
return suspendResult;
|
|
1618
|
-
}
|
|
1619
|
-
|
|
1620
|
-
continue $sm;
|
|
1621
|
-
case 1:
|
|
1622
|
-
return this.o3k_1.a3b().f2s();
|
|
1623
|
-
case 2:
|
|
1624
|
-
throw this.dc_1;
|
|
1625
|
-
}
|
|
1626
|
-
} catch ($p) {
|
|
1627
|
-
var e = $p;
|
|
1628
|
-
if (this.bc_1 === 2) {
|
|
1629
|
-
throw e;
|
|
1630
|
-
} else {
|
|
1631
|
-
this.ac_1 = this.bc_1;
|
|
1632
|
-
this.dc_1 = e;
|
|
1633
|
-
}
|
|
1634
|
-
}
|
|
1635
|
-
while (true);
|
|
1636
|
-
}
|
|
1637
|
-
}
|
|
1638
|
-
initMetadataForCoroutine($);
|
|
1639
|
-
$readLongCOROUTINE$Class = $;
|
|
1640
|
-
}
|
|
1641
|
-
return $readLongCOROUTINE$Class;
|
|
1642
|
-
}
|
|
1643
|
-
var $readIntCOROUTINE$Class;
|
|
1644
|
-
function $readIntCOROUTINE$() {
|
|
1645
|
-
if ($readIntCOROUTINE$Class === VOID) {
|
|
1646
|
-
class $ extends CoroutineImpl() {
|
|
1647
|
-
constructor(_this__u8e3s4, resultContinuation) {
|
|
1648
|
-
super(resultContinuation);
|
|
1649
|
-
this.x3k_1 = _this__u8e3s4;
|
|
1650
|
-
}
|
|
1651
|
-
ic() {
|
|
1652
|
-
var suspendResult = this.cc_1;
|
|
1653
|
-
$sm: do
|
|
1654
|
-
try {
|
|
1655
|
-
var tmp = this.ac_1;
|
|
1656
|
-
switch (tmp) {
|
|
1657
|
-
case 0:
|
|
1658
|
-
this.bc_1 = 2;
|
|
1659
|
-
this.ac_1 = 1;
|
|
1660
|
-
suspendResult = awaitUntilReadable(this.x3k_1, 4, this);
|
|
1661
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1662
|
-
return suspendResult;
|
|
1663
|
-
}
|
|
1664
|
-
|
|
1665
|
-
continue $sm;
|
|
1666
|
-
case 1:
|
|
1667
|
-
return this.x3k_1.a3b().d2s();
|
|
1668
|
-
case 2:
|
|
1669
|
-
throw this.dc_1;
|
|
1670
|
-
}
|
|
1671
|
-
} catch ($p) {
|
|
1672
|
-
var e = $p;
|
|
1673
|
-
if (this.bc_1 === 2) {
|
|
1674
|
-
throw e;
|
|
1675
|
-
} else {
|
|
1676
|
-
this.ac_1 = this.bc_1;
|
|
1677
|
-
this.dc_1 = e;
|
|
1678
|
-
}
|
|
1679
|
-
}
|
|
1680
|
-
while (true);
|
|
1681
|
-
}
|
|
1682
|
-
}
|
|
1683
|
-
initMetadataForCoroutine($);
|
|
1684
|
-
$readIntCOROUTINE$Class = $;
|
|
1685
|
-
}
|
|
1686
|
-
return $readIntCOROUTINE$Class;
|
|
1687
|
-
}
|
|
1688
|
-
var $peekCOROUTINE$Class;
|
|
1689
|
-
function $peekCOROUTINE$() {
|
|
1690
|
-
if ($peekCOROUTINE$Class === VOID) {
|
|
1691
|
-
class $ extends CoroutineImpl() {
|
|
1692
|
-
constructor(_this__u8e3s4, count, resultContinuation) {
|
|
1693
|
-
super(resultContinuation);
|
|
1694
|
-
this.g3l_1 = _this__u8e3s4;
|
|
1695
|
-
this.h3l_1 = count;
|
|
1696
|
-
}
|
|
1697
|
-
ic() {
|
|
1698
|
-
var suspendResult = this.cc_1;
|
|
1699
|
-
$sm: do
|
|
1700
|
-
try {
|
|
1701
|
-
var tmp = this.ac_1;
|
|
1702
|
-
switch (tmp) {
|
|
1703
|
-
case 0:
|
|
1704
|
-
this.bc_1 = 3;
|
|
1705
|
-
if (this.g3l_1.h3b())
|
|
1706
|
-
return null;
|
|
1707
|
-
this.ac_1 = 1;
|
|
1708
|
-
suspendResult = this.g3l_1.i3b(this.h3l_1, this);
|
|
1709
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1710
|
-
return suspendResult;
|
|
1711
|
-
}
|
|
1712
|
-
|
|
1713
|
-
continue $sm;
|
|
1714
|
-
case 1:
|
|
1715
|
-
var ARGUMENT = suspendResult;
|
|
1716
|
-
if (!ARGUMENT) {
|
|
1717
|
-
return null;
|
|
1718
|
-
} else {
|
|
1719
|
-
this.ac_1 = 2;
|
|
1720
|
-
continue $sm;
|
|
1721
|
-
}
|
|
1722
|
-
|
|
1723
|
-
case 2:
|
|
1724
|
-
return readByteString(this.g3l_1.a3b().w2s(), this.h3l_1);
|
|
1725
|
-
case 3:
|
|
1726
|
-
throw this.dc_1;
|
|
1727
|
-
}
|
|
1728
|
-
} catch ($p) {
|
|
1729
|
-
var e = $p;
|
|
1730
|
-
if (this.bc_1 === 3) {
|
|
1731
|
-
throw e;
|
|
1732
|
-
} else {
|
|
1733
|
-
this.ac_1 = this.bc_1;
|
|
1734
|
-
this.dc_1 = e;
|
|
1735
|
-
}
|
|
1736
|
-
}
|
|
1737
|
-
while (true);
|
|
1738
|
-
}
|
|
1739
|
-
}
|
|
1740
|
-
initMetadataForCoroutine($);
|
|
1741
|
-
$peekCOROUTINE$Class = $;
|
|
1742
|
-
}
|
|
1743
|
-
return $peekCOROUTINE$Class;
|
|
1744
|
-
}
|
|
1745
|
-
var $awaitUntilReadableCOROUTINE$Class;
|
|
1746
|
-
function $awaitUntilReadableCOROUTINE$() {
|
|
1747
|
-
if ($awaitUntilReadableCOROUTINE$Class === VOID) {
|
|
1748
|
-
class $ extends CoroutineImpl() {
|
|
1749
|
-
constructor(_this__u8e3s4, numberOfBytes, resultContinuation) {
|
|
1750
|
-
super(resultContinuation);
|
|
1751
|
-
this.q3l_1 = _this__u8e3s4;
|
|
1752
|
-
this.r3l_1 = numberOfBytes;
|
|
1753
|
-
}
|
|
1754
|
-
ic() {
|
|
1755
|
-
var suspendResult = this.cc_1;
|
|
1756
|
-
$sm: do
|
|
1757
|
-
try {
|
|
1758
|
-
var tmp = this.ac_1;
|
|
1759
|
-
switch (tmp) {
|
|
1760
|
-
case 0:
|
|
1761
|
-
this.bc_1 = 3;
|
|
1762
|
-
this.ac_1 = 1;
|
|
1763
|
-
suspendResult = this.q3l_1.i3b(this.r3l_1, this);
|
|
1764
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1765
|
-
return suspendResult;
|
|
1766
|
-
}
|
|
1767
|
-
|
|
1768
|
-
continue $sm;
|
|
1769
|
-
case 1:
|
|
1770
|
-
var ARGUMENT = suspendResult;
|
|
1771
|
-
if (!ARGUMENT) {
|
|
1772
|
-
throw EOFException().m2r('Not enough data available');
|
|
1773
|
-
} else {
|
|
1774
|
-
this.ac_1 = 2;
|
|
1775
|
-
continue $sm;
|
|
1776
|
-
}
|
|
1777
|
-
|
|
1778
|
-
case 2:
|
|
1779
|
-
return Unit_instance;
|
|
1780
|
-
case 3:
|
|
1781
|
-
throw this.dc_1;
|
|
1782
|
-
}
|
|
1783
|
-
} catch ($p) {
|
|
1784
|
-
var e = $p;
|
|
1785
|
-
if (this.bc_1 === 3) {
|
|
1786
|
-
throw e;
|
|
1787
|
-
} else {
|
|
1788
|
-
this.ac_1 = this.bc_1;
|
|
1789
|
-
this.dc_1 = e;
|
|
1790
|
-
}
|
|
1791
|
-
}
|
|
1792
|
-
while (true);
|
|
1793
|
-
}
|
|
1794
|
-
}
|
|
1795
|
-
initMetadataForCoroutine($);
|
|
1796
|
-
$awaitUntilReadableCOROUTINE$Class = $;
|
|
339
|
+
throw IOException().m2a('Unexpected line ending ' + LineEndingMode__toString_impl_j4h76r(lineEndingToCheck) + ', while expected ' + LineEndingMode__toString_impl_j4h76r($lineEnding));
|
|
1797
340
|
}
|
|
1798
|
-
return $awaitUntilReadableCOROUTINE$Class;
|
|
1799
341
|
}
|
|
1800
342
|
//region block: exports
|
|
1801
343
|
export {
|
|
1802
|
-
copyAndClose as copyAndClose18m9s4thl5g8a,
|
|
1803
344
|
copyTo as copyTo2vm7vz7rr51or,
|
|
1804
|
-
discard_0 as discard2tnmk0ppobupv,
|
|
1805
345
|
readAvailable_0 as readAvailable22vc1bmbuj93x,
|
|
1806
|
-
readByte as readByte1fosf9t7rsagl,
|
|
1807
|
-
readInt as readInt250esdbock5tr,
|
|
1808
|
-
readLong as readLong2v440y4ztrd2,
|
|
1809
346
|
readPacket as readPacket2q2gamtzwxjd1,
|
|
1810
347
|
readRemaining as readRemaining1x8kk1vq7p6gm,
|
|
1811
|
-
|
|
1812
|
-
readUTF8LineTo_0 as readUTF8LineTo3cgartetbq4tk,
|
|
348
|
+
readUTF8LineTo as readUTF8LineTo3cgartetbq4tk,
|
|
1813
349
|
readUTF8Line as readUTF8Lineygmlhrpm9syq,
|
|
1814
350
|
readUntil as readUntil2jtfemvkt7z1f,
|
|
1815
351
|
skipIfFound as skipIfFound1yms04v7e3tuk,
|
|
1816
352
|
toByteArray as toByteArrayafjflk7yznm4,
|
|
1817
|
-
|
|
1818
|
-
reader as reader248c0jw1ii7vm,
|
|
1819
|
-
reader_0 as reader2auqe0lq0s3fd,
|
|
1820
|
-
rethrowCloseCauseIfNeeded_0 as rethrowCloseCauseIfNeededeln8lm5agg4u,
|
|
353
|
+
rethrowCloseCauseIfNeeded as rethrowCloseCauseIfNeededeln8lm5agg4u,
|
|
1821
354
|
rethrowCloseCauseIfNeeded_1 as rethrowCloseCauseIfNeeded2q8fs9csuucwc,
|
|
1822
355
|
};
|
|
1823
356
|
//endregion
|