@icure/cardinal-sdk 2.0.0-PREVIEW-18.1 → 2.0.0-PREVIEW-21
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/Kermit-kermit-core.mjs +45 -40
- package/Kermit-kermit.mjs +6 -6
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1577 -1577
- package/api/HealthcarePartyApi.d.mts +2 -0
- package/api/HealthcarePartyApiInGroup.d.mts +5 -0
- package/api/HealthcarePartyApiInGroup.mjs +1 -0
- package/api/RecoveryApi.d.mts +5 -1
- package/api.d.mts +1 -0
- package/api.mjs +1 -0
- package/bitops-library-bits.mjs +197 -0
- package/bitops-library-endian.mjs +117 -0
- package/cardinal-sdk-ts.d.mts +2 -2
- package/cardinal-sdk-ts.mjs +57007 -56794
- package/cardinal-sdk.mjs +120895 -120501
- package/core-library-digest.mjs +186 -0
- package/crypto/CryptoService.d.mts +17 -7
- package/error-library-error.mjs +42 -0
- package/hash-library-sha2.mjs +183 -0
- package/internal/BytesEncoding.d.mts +3 -0
- package/internal/BytesEncoding.mjs +99 -0
- package/internal/JsonDecodeUtils.d.mts +20 -0
- package/internal/JsonDecodeUtils.mjs +99 -0
- package/kerberus.mjs +557 -389
- package/kotlin-kotlin-stdlib.mjs +2445 -2713
- package/kotlinx-atomicfu.mjs +13 -13
- package/kotlinx-coroutines-core.mjs +2455 -2450
- package/kotlinx-io-kotlinx-io-bytestring.mjs +36 -36
- package/kotlinx-io-kotlinx-io-core.mjs +459 -459
- package/kotlinx-serialization-kotlinx-serialization-core.mjs +2029 -2029
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1952 -1952
- package/kryptom-lib.mjs +3263 -1967
- package/ktor-ktor-client-content-negotiation.mjs +184 -184
- package/ktor-ktor-client-core.mjs +2713 -2713
- package/ktor-ktor-events.mjs +6 -6
- package/ktor-ktor-http-cio.mjs +481 -481
- package/ktor-ktor-http.mjs +693 -693
- package/ktor-ktor-io.mjs +963 -963
- package/ktor-ktor-serialization-kotlinx-json.mjs +7 -7
- package/ktor-ktor-serialization-kotlinx.mjs +238 -238
- package/ktor-ktor-serialization.mjs +109 -109
- package/ktor-ktor-utils.mjs +557 -557
- package/ktor-ktor-websockets.mjs +673 -673
- package/model/AccessLog.d.mts +5 -0
- package/model/AccessLog.mjs +168 -0
- package/model/Agenda.d.mts +2 -0
- package/model/Agenda.mjs +82 -0
- package/model/ApplicationSettings.d.mts +5 -0
- package/model/ApplicationSettings.mjs +140 -0
- package/model/BooleanResponse.d.mts +2 -0
- package/model/BooleanResponse.mjs +20 -0
- package/model/CalendarItem.d.mts +5 -0
- package/model/CalendarItem.mjs +290 -0
- package/model/CalendarItemType.d.mts +7 -0
- package/model/CalendarItemType.mjs +117 -0
- package/model/Classification.d.mts +5 -0
- package/model/Classification.mjs +148 -0
- package/model/Code.d.mts +2 -0
- package/model/Code.mjs +69 -0
- package/model/Contact.d.mts +5 -0
- package/model/Contact.mjs +218 -0
- package/model/CryptoActorStub.d.mts +2 -0
- package/model/CryptoActorStub.mjs +45 -0
- package/model/CryptoActorStubWithType.d.mts +2 -0
- package/model/CryptoActorStubWithType.mjs +25 -0
- package/model/DataOwnerRegistrationSuccess.d.mts +2 -0
- package/model/DataOwnerRegistrationSuccess.mjs +24 -0
- package/model/DataOwnerWithType.d.mts +7 -0
- package/model/DataOwnerWithType.mjs +80 -0
- package/model/DatabaseInitialisation.d.mts +2 -0
- package/model/DatabaseInitialisation.mjs +34 -0
- package/model/Device.d.mts +2 -0
- package/model/Device.mjs +99 -0
- package/model/Document.d.mts +5 -0
- package/model/Document.mjs +246 -0
- package/model/DocumentTemplate.d.mts +2 -0
- package/model/DocumentTemplate.mjs +91 -0
- package/model/EntityReference.d.mts +2 -0
- package/model/EntityReference.mjs +29 -0
- package/model/EntityReferenceInGroup.d.mts +2 -0
- package/model/EntityReferenceInGroup.mjs +23 -0
- package/model/EntityTemplate.d.mts +2 -0
- package/model/EntityTemplate.mjs +46 -0
- package/model/Form.d.mts +5 -0
- package/model/Form.mjs +204 -0
- package/model/FormTemplate.d.mts +2 -0
- package/model/FormTemplate.mjs +82 -0
- package/model/FrontEndMigration.d.mts +2 -0
- package/model/FrontEndMigration.mjs +57 -0
- package/model/Group.d.mts +2 -0
- package/model/Group.mjs +68 -0
- package/model/GroupDeletionReport.d.mts +2 -0
- package/model/GroupDeletionReport.mjs +24 -0
- package/model/HealthElement.d.mts +5 -0
- package/model/HealthElement.mjs +226 -0
- package/model/HealthcareParty.d.mts +2 -0
- package/model/HealthcareParty.mjs +182 -0
- package/model/IdWithRev.d.mts +2 -0
- package/model/IdWithRev.mjs +23 -0
- package/model/IndexingInfo.d.mts +2 -0
- package/model/IndexingInfo.mjs +21 -0
- package/model/Insurance.d.mts +2 -0
- package/model/Insurance.mjs +46 -0
- package/model/Invoice.d.mts +5 -0
- package/model/Invoice.mjs +468 -0
- package/model/Keyword.d.mts +2 -0
- package/model/Keyword.mjs +58 -0
- package/model/ListOfIds.d.mts +2 -0
- package/model/ListOfIds.mjs +20 -0
- package/model/ListOfProperties.d.mts +2 -0
- package/model/ListOfProperties.mjs +22 -0
- package/model/MaintenanceTask.d.mts +5 -0
- package/model/MaintenanceTask.mjs +152 -0
- package/model/MedicalLocation.d.mts +2 -0
- package/model/MedicalLocation.mjs +63 -0
- package/model/Message.d.mts +5 -0
- package/model/Message.mjs +248 -0
- package/model/PaginatedDocumentKeyIdPair.d.mts +2 -0
- package/model/PaginatedDocumentKeyIdPair.mjs +24 -0
- package/model/Patient.d.mts +5 -0
- package/model/Patient.mjs +491 -0
- package/model/Place.d.mts +2 -0
- package/model/Place.mjs +33 -0
- package/model/PropertyStub.d.mts +5 -0
- package/model/PropertyStub.mjs +74 -0
- package/model/PropertyTypeStub.d.mts +2 -0
- package/model/PropertyTypeStub.mjs +26 -0
- package/model/PublicAgendasAndCalendarItemTypes.d.mts +2 -0
- package/model/PublicAgendasAndCalendarItemTypes.mjs +25 -0
- package/model/PublicKey.d.mts +2 -0
- package/model/PublicKey.mjs +24 -0
- package/model/Receipt.d.mts +5 -0
- package/model/Receipt.mjs +159 -0
- package/model/RegistrationInformation.d.mts +2 -0
- package/model/RegistrationInformation.mjs +43 -0
- package/model/RegistrationSuccess.d.mts +2 -0
- package/model/RegistrationSuccess.mjs +24 -0
- package/model/Replication.d.mts +2 -0
- package/model/Replication.mjs +35 -0
- package/model/ReplicationInfo.d.mts +2 -0
- package/model/ReplicationInfo.mjs +28 -0
- package/model/Role.d.mts +2 -0
- package/model/Role.mjs +34 -0
- package/model/StoredDocumentIdentifier.d.mts +2 -0
- package/model/StoredDocumentIdentifier.mjs +22 -0
- package/model/Tarification.d.mts +2 -0
- package/model/Tarification.mjs +92 -0
- package/model/TimeTable.d.mts +2 -0
- package/model/TimeTable.mjs +64 -0
- package/model/Topic.d.mts +5 -0
- package/model/Topic.mjs +163 -0
- package/model/User.d.mts +4 -0
- package/model/User.mjs +118 -0
- package/model/UserGroup.d.mts +2 -0
- package/model/UserGroup.mjs +55 -0
- package/model/base/CodeStub.d.mts +2 -0
- package/model/base/CodeStub.mjs +40 -0
- package/model/base/CryptoActor.d.mts +3 -0
- package/model/base/CryptoActor.mjs +19 -1
- package/model/base/Identifier.d.mts +2 -0
- package/model/base/Identifier.mjs +44 -0
- package/model/couchdb/Basic.d.mts +2 -0
- package/model/couchdb/Basic.mjs +22 -0
- package/model/couchdb/DatabaseInfo.d.mts +2 -0
- package/model/couchdb/DatabaseInfo.mjs +47 -0
- package/model/couchdb/DesignDocument.d.mts +2 -0
- package/model/couchdb/DesignDocument.mjs +40 -0
- package/model/couchdb/DocIdentifier.d.mts +2 -0
- package/model/couchdb/DocIdentifier.mjs +24 -0
- package/model/couchdb/GroupDatabasesInfo.d.mts +2 -0
- package/model/couchdb/GroupDatabasesInfo.mjs +26 -0
- package/model/couchdb/Remote.d.mts +2 -0
- package/model/couchdb/Remote.mjs +25 -0
- package/model/couchdb/RemoteAuthentication.d.mts +2 -0
- package/model/couchdb/RemoteAuthentication.mjs +23 -0
- package/model/couchdb/ReplicationStats.d.mts +2 -0
- package/model/couchdb/ReplicationStats.mjs +45 -0
- package/model/couchdb/ReplicatorDocument.d.mts +2 -0
- package/model/couchdb/ReplicatorDocument.mjs +61 -0
- package/model/couchdb/View.d.mts +2 -0
- package/model/couchdb/View.mjs +23 -0
- package/model/data/LabelledOccurence.d.mts +2 -0
- package/model/data/LabelledOccurence.mjs +22 -0
- package/model/embed/Address.d.mts +5 -0
- package/model/embed/Address.mjs +133 -0
- package/model/embed/AdministrationQuantity.d.mts +2 -0
- package/model/embed/AdministrationQuantity.mjs +29 -0
- package/model/embed/AgendaSlottingAlgorithm.d.mts +3 -0
- package/model/embed/AgendaSlottingAlgorithm.mjs +30 -0
- package/model/embed/AgreementAppendix.d.mts +2 -0
- package/model/embed/AgreementAppendix.mjs +30 -0
- package/model/embed/Annotation.d.mts +2 -0
- package/model/embed/Annotation.mjs +46 -0
- package/model/embed/CalendarItemTag.d.mts +5 -0
- package/model/embed/CalendarItemTag.mjs +72 -0
- package/model/embed/CareTeamMember.d.mts +5 -0
- package/model/embed/CareTeamMember.mjs +71 -0
- package/model/embed/CareTeamMembership.d.mts +5 -0
- package/model/embed/CareTeamMembership.mjs +73 -0
- package/model/embed/Content.d.mts +5 -0
- package/model/embed/Content.mjs +125 -0
- package/model/embed/DataAttachment.d.mts +2 -0
- package/model/embed/DataAttachment.mjs +26 -0
- package/model/embed/DatabaseSynchronization.d.mts +2 -0
- package/model/embed/DatabaseSynchronization.mjs +30 -0
- package/model/embed/Delegation.d.mts +2 -0
- package/model/embed/Delegation.mjs +30 -0
- package/model/embed/DeletedAttachment.d.mts +2 -0
- package/model/embed/DeletedAttachment.mjs +30 -0
- package/model/embed/DocumentGroup.d.mts +2 -0
- package/model/embed/DocumentGroup.mjs +24 -0
- package/model/embed/Duration.d.mts +2 -0
- package/model/embed/Duration.mjs +26 -0
- package/model/embed/EmbeddedTimeTableHour.d.mts +2 -0
- package/model/embed/EmbeddedTimeTableHour.mjs +22 -0
- package/model/embed/EmbeddedTimeTableItem.d.mts +2 -0
- package/model/embed/EmbeddedTimeTableItem.mjs +41 -0
- package/model/embed/Employer.d.mts +2 -0
- package/model/embed/Employer.mjs +26 -0
- package/model/embed/EmploymentInfo.d.mts +5 -0
- package/model/embed/EmploymentInfo.mjs +74 -0
- package/model/embed/Episode.d.mts +5 -0
- package/model/embed/Episode.mjs +75 -0
- package/model/embed/FinancialInstitutionInformation.d.mts +5 -0
- package/model/embed/FinancialInstitutionInformation.mjs +88 -0
- package/model/embed/FlatRateTarification.d.mts +5 -0
- package/model/embed/FlatRateTarification.mjs +72 -0
- package/model/embed/FlowItem.d.mts +2 -0
- package/model/embed/FlowItem.mjs +117 -0
- package/model/embed/HealthcarePartyHistoryStatus.d.mts +2 -0
- package/model/embed/HealthcarePartyHistoryStatus.mjs +28 -0
- package/model/embed/IdentityDocumentReader.d.mts +2 -0
- package/model/embed/IdentityDocumentReader.mjs +33 -0
- package/model/embed/Insurability.d.mts +5 -0
- package/model/embed/Insurability.mjs +100 -0
- package/model/embed/InvoicingCode.d.mts +5 -0
- package/model/embed/InvoicingCode.mjs +377 -0
- package/model/embed/KeywordSubword.d.mts +2 -0
- package/model/embed/KeywordSubword.mjs +25 -0
- package/model/embed/LetterValue.d.mts +2 -0
- package/model/embed/LetterValue.mjs +30 -0
- package/model/embed/Measure.d.mts +2 -0
- package/model/embed/Measure.mjs +57 -0
- package/model/embed/MedicalHouseContract.d.mts +5 -0
- package/model/embed/MedicalHouseContract.mjs +223 -0
- package/model/embed/Medication.d.mts +2 -0
- package/model/embed/Medication.mjs +157 -0
- package/model/embed/Medicinalproduct.d.mts +2 -0
- package/model/embed/Medicinalproduct.mjs +33 -0
- package/model/embed/MessageAttachment.d.mts +2 -0
- package/model/embed/MessageAttachment.mjs +25 -0
- package/model/embed/MessageReadStatus.d.mts +2 -0
- package/model/embed/MessageReadStatus.mjs +23 -0
- package/model/embed/ParagraphAgreement.d.mts +2 -0
- package/model/embed/ParagraphAgreement.mjs +86 -0
- package/model/embed/Partnership.d.mts +2 -0
- package/model/embed/Partnership.mjs +36 -0
- package/model/embed/PatientHealthCareParty.d.mts +9 -0
- package/model/embed/PatientHealthCareParty.mjs +88 -0
- package/model/embed/Payment.d.mts +2 -0
- package/model/embed/Payment.mjs +28 -0
- package/model/embed/Periodicity.d.mts +2 -0
- package/model/embed/Periodicity.mjs +26 -0
- package/model/embed/PersonName.d.mts +2 -0
- package/model/embed/PersonName.mjs +41 -0
- package/model/embed/PlanOfAction.d.mts +8 -3
- package/model/embed/PlanOfAction.mjs +179 -0
- package/model/embed/Range.d.mts +2 -0
- package/model/embed/Range.mjs +24 -0
- package/model/embed/ReferenceRange.d.mts +2 -0
- package/model/embed/ReferenceRange.mjs +40 -0
- package/model/embed/ReferralPeriod.d.mts +2 -0
- package/model/embed/ReferralPeriod.mjs +27 -0
- package/model/embed/RegimenItem.d.mts +2 -0
- package/model/embed/RegimenItem.mjs +40 -0
- package/model/embed/Renewal.d.mts +2 -0
- package/model/embed/Renewal.mjs +26 -0
- package/model/embed/ResourceGroupAllocationSchedule.d.mts +2 -0
- package/model/embed/ResourceGroupAllocationSchedule.mjs +39 -0
- package/model/embed/Right.d.mts +2 -0
- package/model/embed/Right.mjs +27 -0
- package/model/embed/RoleConfiguration.d.mts +2 -0
- package/model/embed/RoleConfiguration.mjs +22 -0
- package/model/embed/SchoolingInfo.d.mts +5 -0
- package/model/embed/SchoolingInfo.mjs +73 -0
- package/model/embed/SecureDelegation.d.mts +2 -0
- package/model/embed/SecureDelegation.mjs +39 -0
- package/model/embed/SecurityMetadata.d.mts +2 -0
- package/model/embed/SecurityMetadata.mjs +22 -0
- package/model/embed/Service.d.mts +5 -0
- package/model/embed/Service.mjs +240 -0
- package/model/embed/ServiceLink.d.mts +2 -0
- package/model/embed/ServiceLink.mjs +21 -0
- package/model/embed/SubContact.d.mts +5 -0
- package/model/embed/SubContact.mjs +146 -0
- package/model/embed/Substanceproduct.d.mts +2 -0
- package/model/embed/Substanceproduct.mjs +33 -0
- package/model/embed/Suspension.d.mts +2 -0
- package/model/embed/Suspension.mjs +30 -0
- package/model/embed/Telecom.d.mts +5 -0
- package/model/embed/Telecom.mjs +67 -0
- package/model/embed/TimeSeries.d.mts +2 -0
- package/model/embed/TimeSeries.mjs +32 -0
- package/model/embed/TimeTableHour.d.mts +2 -0
- package/model/embed/TimeTableHour.mjs +24 -0
- package/model/embed/TimeTableItem.d.mts +2 -0
- package/model/embed/TimeTableItem.mjs +57 -0
- package/model/embed/TypedValue.d.mts +5 -0
- package/model/embed/TypedValue.mjs +85 -0
- package/model/embed/Valorisation.d.mts +5 -0
- package/model/embed/Valorisation.mjs +108 -0
- package/model/embed/ValueWithPrecision.d.mts +2 -0
- package/model/embed/ValueWithPrecision.mjs +22 -0
- package/model/embed/Weekday.d.mts +2 -0
- package/model/embed/Weekday.mjs +26 -0
- package/model/embed/form/template/Action.d.mts +2 -0
- package/model/embed/form/template/Action.mjs +30 -0
- package/model/embed/form/template/CheckBox.d.mts +2 -0
- package/model/embed/form/template/CheckBox.mjs +71 -0
- package/model/embed/form/template/DatePicker.d.mts +2 -0
- package/model/embed/form/template/DatePicker.mjs +71 -0
- package/model/embed/form/template/DateTimePicker.d.mts +2 -0
- package/model/embed/form/template/DateTimePicker.mjs +71 -0
- package/model/embed/form/template/DropdownField.d.mts +2 -0
- package/model/embed/form/template/DropdownField.mjs +71 -0
- package/model/embed/form/template/FieldsGroup.d.mts +2 -0
- package/model/embed/form/template/FieldsGroup.mjs +28 -0
- package/model/embed/form/template/FormTemplateLayout.d.mts +2 -0
- package/model/embed/form/template/FormTemplateLayout.mjs +33 -0
- package/model/embed/form/template/Launcher.d.mts +2 -0
- package/model/embed/form/template/Launcher.mjs +26 -0
- package/model/embed/form/template/MeasureField.d.mts +2 -0
- package/model/embed/form/template/MeasureField.mjs +71 -0
- package/model/embed/form/template/MultipleChoice.d.mts +2 -0
- package/model/embed/form/template/MultipleChoice.mjs +71 -0
- package/model/embed/form/template/NumberField.d.mts +2 -0
- package/model/embed/form/template/NumberField.mjs +71 -0
- package/model/embed/form/template/RadioButton.d.mts +2 -0
- package/model/embed/form/template/RadioButton.mjs +71 -0
- package/model/embed/form/template/Section.d.mts +2 -0
- package/model/embed/form/template/Section.mjs +30 -0
- package/model/embed/form/template/State.d.mts +2 -0
- package/model/embed/form/template/State.mjs +26 -0
- package/model/embed/form/template/StructureElement.d.mts +3 -0
- package/model/embed/form/template/StructureElement.mjs +32 -1
- package/model/embed/form/template/TextField.d.mts +2 -0
- package/model/embed/form/template/TextField.mjs +71 -0
- package/model/embed/form/template/TimePicker.d.mts +2 -0
- package/model/embed/form/template/TimePicker.mjs +71 -0
- package/model/filter/predicate/AlwaysPredicate.d.mts +2 -0
- package/model/filter/predicate/AlwaysPredicate.mjs +20 -0
- package/model/filter/predicate/AndPredicate.d.mts +2 -0
- package/model/filter/predicate/AndPredicate.mjs +25 -0
- package/model/filter/predicate/KeyValuePredicate.d.mts +2 -0
- package/model/filter/predicate/KeyValuePredicate.mjs +32 -0
- package/model/filter/predicate/NotPredicate.d.mts +2 -0
- package/model/filter/predicate/NotPredicate.mjs +25 -0
- package/model/filter/predicate/OrPredicate.d.mts +2 -0
- package/model/filter/predicate/OrPredicate.mjs +25 -0
- package/model/filter/predicate/Predicate.d.mts +3 -0
- package/model/filter/predicate/Predicate.mjs +20 -1
- package/model/security/AlwaysPermissionItem.d.mts +2 -0
- package/model/security/AlwaysPermissionItem.mjs +25 -0
- package/model/security/AuthenticationToken.d.mts +2 -0
- package/model/security/AuthenticationToken.mjs +28 -0
- package/model/security/Enable2faRequest.d.mts +2 -0
- package/model/security/Enable2faRequest.mjs +22 -0
- package/model/security/ExternalJwtConfig.d.mts +18 -0
- package/model/security/ExternalJwtConfig.mjs +199 -0
- package/model/security/LoginIdentifier.d.mts +2 -0
- package/model/security/LoginIdentifier.mjs +22 -0
- package/model/security/OperationToken.d.mts +2 -0
- package/model/security/OperationToken.mjs +31 -0
- package/model/security/Permission.d.mts +2 -0
- package/model/security/Permission.mjs +24 -0
- package/model/security/PermissionItem.d.mts +3 -0
- package/model/security/PermissionItem.mjs +12 -1
- package/model/security/TokenWithGroup.d.mts +2 -0
- package/model/security/TokenWithGroup.mjs +25 -0
- package/options/SdkOptions.d.mts +3 -23
- package/package.json +1 -1
- package/utils/Id.d.mts +5 -0
- package/utils/Id.mjs +19 -10
- package/KotlinBigInteger-bignum.mjs +0 -5902
- /package/{KotlinBigInteger-bignum-serialization-kotlinx.mjs → core-library-core.mjs} +0 -0
|
@@ -88,7 +88,7 @@ function extensions(format) {
|
|
|
88
88
|
var _iterator__ex2g4s = tmp0.s();
|
|
89
89
|
while (_iterator__ex2g4s.t()) {
|
|
90
90
|
var element = _iterator__ex2g4s.u();
|
|
91
|
-
var tmp0_safe_receiver = element.
|
|
91
|
+
var tmp0_safe_receiver = element.x6t(format);
|
|
92
92
|
if (tmp0_safe_receiver == null)
|
|
93
93
|
null;
|
|
94
94
|
else {
|
|
@@ -99,38 +99,38 @@ function extensions(format) {
|
|
|
99
99
|
return destination;
|
|
100
100
|
}
|
|
101
101
|
function serialization(_this__u8e3s4, contentType, format) {
|
|
102
|
-
_this__u8e3s4.
|
|
102
|
+
_this__u8e3s4.e5l(contentType, new KotlinxSerializationConverter(format));
|
|
103
103
|
}
|
|
104
104
|
function KotlinxSerializationConverter$serialize$o$collect$slambda($$this$unsafeFlow, $contentType, $charset, $typeInfo, $value, resultContinuation) {
|
|
105
|
-
this.
|
|
106
|
-
this.
|
|
107
|
-
this.
|
|
108
|
-
this.
|
|
109
|
-
this.
|
|
105
|
+
this.g6u_1 = $$this$unsafeFlow;
|
|
106
|
+
this.h6u_1 = $contentType;
|
|
107
|
+
this.i6u_1 = $charset;
|
|
108
|
+
this.j6u_1 = $typeInfo;
|
|
109
|
+
this.k6u_1 = $value;
|
|
110
110
|
CoroutineImpl.call(this, resultContinuation);
|
|
111
111
|
}
|
|
112
|
-
protoOf(KotlinxSerializationConverter$serialize$o$collect$slambda).
|
|
113
|
-
var tmp = this.
|
|
114
|
-
tmp.
|
|
115
|
-
tmp.
|
|
116
|
-
return tmp.
|
|
112
|
+
protoOf(KotlinxSerializationConverter$serialize$o$collect$slambda).u5l = function (value, $completion) {
|
|
113
|
+
var tmp = this.v5l(value, $completion);
|
|
114
|
+
tmp.n8_1 = Unit_instance;
|
|
115
|
+
tmp.o8_1 = null;
|
|
116
|
+
return tmp.t8();
|
|
117
117
|
};
|
|
118
|
-
protoOf(KotlinxSerializationConverter$serialize$o$collect$slambda).
|
|
119
|
-
return this.
|
|
118
|
+
protoOf(KotlinxSerializationConverter$serialize$o$collect$slambda).f9 = function (p1, $completion) {
|
|
119
|
+
return this.u5l((p1 == null ? true : !(p1 == null)) ? p1 : THROW_CCE(), $completion);
|
|
120
120
|
};
|
|
121
|
-
protoOf(KotlinxSerializationConverter$serialize$o$collect$slambda).
|
|
122
|
-
var suspendResult = this.
|
|
121
|
+
protoOf(KotlinxSerializationConverter$serialize$o$collect$slambda).t8 = function () {
|
|
122
|
+
var suspendResult = this.n8_1;
|
|
123
123
|
$sm: do
|
|
124
124
|
try {
|
|
125
|
-
var tmp = this.
|
|
125
|
+
var tmp = this.l8_1;
|
|
126
126
|
switch (tmp) {
|
|
127
127
|
case 0:
|
|
128
|
-
this.
|
|
129
|
-
var tmp0 = this.
|
|
130
|
-
var tmp2 = this.
|
|
131
|
-
this.
|
|
132
|
-
this.
|
|
133
|
-
suspendResult = tmp2.
|
|
128
|
+
this.m8_1 = 3;
|
|
129
|
+
var tmp0 = this.g6u_1;
|
|
130
|
+
var tmp2 = this.l6u_1;
|
|
131
|
+
this.m6u_1 = tmp0;
|
|
132
|
+
this.l8_1 = 1;
|
|
133
|
+
suspendResult = tmp2.w6t(this.h6u_1, this.i6u_1, this.j6u_1, this.k6u_1, this);
|
|
134
134
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
135
135
|
return suspendResult;
|
|
136
136
|
}
|
|
@@ -138,8 +138,8 @@ protoOf(KotlinxSerializationConverter$serialize$o$collect$slambda).a9 = function
|
|
|
138
138
|
continue $sm;
|
|
139
139
|
case 1:
|
|
140
140
|
var ARGUMENT = suspendResult;
|
|
141
|
-
this.
|
|
142
|
-
suspendResult = this.
|
|
141
|
+
this.l8_1 = 2;
|
|
142
|
+
suspendResult = this.m6u_1.m1f(ARGUMENT, this);
|
|
143
143
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
144
144
|
return suspendResult;
|
|
145
145
|
}
|
|
@@ -148,49 +148,49 @@ protoOf(KotlinxSerializationConverter$serialize$o$collect$slambda).a9 = function
|
|
|
148
148
|
case 2:
|
|
149
149
|
return Unit_instance;
|
|
150
150
|
case 3:
|
|
151
|
-
throw this.
|
|
151
|
+
throw this.o8_1;
|
|
152
152
|
}
|
|
153
153
|
} catch ($p) {
|
|
154
154
|
var e = $p;
|
|
155
|
-
if (this.
|
|
155
|
+
if (this.m8_1 === 3) {
|
|
156
156
|
throw e;
|
|
157
157
|
} else {
|
|
158
|
-
this.
|
|
159
|
-
this.
|
|
158
|
+
this.l8_1 = this.m8_1;
|
|
159
|
+
this.o8_1 = e;
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
while (true);
|
|
163
163
|
};
|
|
164
|
-
protoOf(KotlinxSerializationConverter$serialize$o$collect$slambda).
|
|
165
|
-
var i = new KotlinxSerializationConverter$serialize$o$collect$slambda(this.
|
|
166
|
-
i.
|
|
164
|
+
protoOf(KotlinxSerializationConverter$serialize$o$collect$slambda).v5l = function (value, completion) {
|
|
165
|
+
var i = new KotlinxSerializationConverter$serialize$o$collect$slambda(this.g6u_1, this.h6u_1, this.i6u_1, this.j6u_1, this.k6u_1, completion);
|
|
166
|
+
i.l6u_1 = value;
|
|
167
167
|
return i;
|
|
168
168
|
};
|
|
169
169
|
function KotlinxSerializationConverter$serialize$o$collect$slambda_0($$this$unsafeFlow, $contentType, $charset, $typeInfo, $value, resultContinuation) {
|
|
170
170
|
var i = new KotlinxSerializationConverter$serialize$o$collect$slambda($$this$unsafeFlow, $contentType, $charset, $typeInfo, $value, resultContinuation);
|
|
171
171
|
var l = function (value, $completion) {
|
|
172
|
-
return i.
|
|
172
|
+
return i.u5l(value, $completion);
|
|
173
173
|
};
|
|
174
174
|
l.$arity = 1;
|
|
175
175
|
return l;
|
|
176
176
|
}
|
|
177
177
|
function $collectCOROUTINE$(_this__u8e3s4, collector, resultContinuation) {
|
|
178
178
|
CoroutineImpl.call(this, resultContinuation);
|
|
179
|
-
this.
|
|
180
|
-
this.
|
|
179
|
+
this.v6u_1 = _this__u8e3s4;
|
|
180
|
+
this.w6u_1 = collector;
|
|
181
181
|
}
|
|
182
|
-
protoOf($collectCOROUTINE$).
|
|
183
|
-
var suspendResult = this.
|
|
182
|
+
protoOf($collectCOROUTINE$).t8 = function () {
|
|
183
|
+
var suspendResult = this.n8_1;
|
|
184
184
|
$sm: do
|
|
185
185
|
try {
|
|
186
|
-
var tmp = this.
|
|
186
|
+
var tmp = this.l8_1;
|
|
187
187
|
switch (tmp) {
|
|
188
188
|
case 0:
|
|
189
|
-
this.
|
|
190
|
-
var $this$unsafeFlow = this.
|
|
191
|
-
this.
|
|
192
|
-
var tmp_0 = KotlinxSerializationConverter$serialize$o$collect$slambda_0($this$unsafeFlow, this.
|
|
193
|
-
suspendResult = this.
|
|
189
|
+
this.m8_1 = 2;
|
|
190
|
+
var $this$unsafeFlow = this.w6u_1;
|
|
191
|
+
this.l8_1 = 1;
|
|
192
|
+
var tmp_0 = KotlinxSerializationConverter$serialize$o$collect$slambda_0($this$unsafeFlow, this.v6u_1.y6u_1, this.v6u_1.z6u_1, this.v6u_1.a6v_1, this.v6u_1.b6v_1, null);
|
|
193
|
+
suspendResult = this.v6u_1.x6u_1.y1e(new sam$kotlinx_coroutines_flow_FlowCollector$0(tmp_0), this);
|
|
194
194
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
195
195
|
return suspendResult;
|
|
196
196
|
}
|
|
@@ -199,48 +199,48 @@ protoOf($collectCOROUTINE$).a9 = function () {
|
|
|
199
199
|
case 1:
|
|
200
200
|
return Unit_instance;
|
|
201
201
|
case 2:
|
|
202
|
-
throw this.
|
|
202
|
+
throw this.o8_1;
|
|
203
203
|
}
|
|
204
204
|
} catch ($p) {
|
|
205
205
|
var e = $p;
|
|
206
|
-
if (this.
|
|
206
|
+
if (this.m8_1 === 2) {
|
|
207
207
|
throw e;
|
|
208
208
|
} else {
|
|
209
|
-
this.
|
|
210
|
-
this.
|
|
209
|
+
this.l8_1 = this.m8_1;
|
|
210
|
+
this.o8_1 = e;
|
|
211
211
|
}
|
|
212
212
|
}
|
|
213
213
|
while (true);
|
|
214
214
|
};
|
|
215
215
|
function KotlinxSerializationConverter$deserialize$o$collect$slambda($$this$unsafeFlow, $charset, $typeInfo, $content, resultContinuation) {
|
|
216
|
-
this.
|
|
217
|
-
this.
|
|
218
|
-
this.
|
|
219
|
-
this.
|
|
216
|
+
this.k6v_1 = $$this$unsafeFlow;
|
|
217
|
+
this.l6v_1 = $charset;
|
|
218
|
+
this.m6v_1 = $typeInfo;
|
|
219
|
+
this.n6v_1 = $content;
|
|
220
220
|
CoroutineImpl.call(this, resultContinuation);
|
|
221
221
|
}
|
|
222
|
-
protoOf(KotlinxSerializationConverter$deserialize$o$collect$slambda).
|
|
223
|
-
var tmp = this.
|
|
224
|
-
tmp.
|
|
225
|
-
tmp.
|
|
226
|
-
return tmp.
|
|
222
|
+
protoOf(KotlinxSerializationConverter$deserialize$o$collect$slambda).u5l = function (value, $completion) {
|
|
223
|
+
var tmp = this.v5l(value, $completion);
|
|
224
|
+
tmp.n8_1 = Unit_instance;
|
|
225
|
+
tmp.o8_1 = null;
|
|
226
|
+
return tmp.t8();
|
|
227
227
|
};
|
|
228
|
-
protoOf(KotlinxSerializationConverter$deserialize$o$collect$slambda).
|
|
229
|
-
return this.
|
|
228
|
+
protoOf(KotlinxSerializationConverter$deserialize$o$collect$slambda).f9 = function (p1, $completion) {
|
|
229
|
+
return this.u5l((p1 == null ? true : !(p1 == null)) ? p1 : THROW_CCE(), $completion);
|
|
230
230
|
};
|
|
231
|
-
protoOf(KotlinxSerializationConverter$deserialize$o$collect$slambda).
|
|
232
|
-
var suspendResult = this.
|
|
231
|
+
protoOf(KotlinxSerializationConverter$deserialize$o$collect$slambda).t8 = function () {
|
|
232
|
+
var suspendResult = this.n8_1;
|
|
233
233
|
$sm: do
|
|
234
234
|
try {
|
|
235
|
-
var tmp = this.
|
|
235
|
+
var tmp = this.l8_1;
|
|
236
236
|
switch (tmp) {
|
|
237
237
|
case 0:
|
|
238
|
-
this.
|
|
239
|
-
var tmp0 = this.
|
|
240
|
-
var tmp2 = this.
|
|
241
|
-
this.
|
|
242
|
-
this.
|
|
243
|
-
suspendResult = tmp2.
|
|
238
|
+
this.m8_1 = 3;
|
|
239
|
+
var tmp0 = this.k6v_1;
|
|
240
|
+
var tmp2 = this.o6v_1;
|
|
241
|
+
this.p6v_1 = tmp0;
|
|
242
|
+
this.l8_1 = 1;
|
|
243
|
+
suspendResult = tmp2.w5l(this.l6v_1, this.m6v_1, this.n6v_1, this);
|
|
244
244
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
245
245
|
return suspendResult;
|
|
246
246
|
}
|
|
@@ -248,8 +248,8 @@ protoOf(KotlinxSerializationConverter$deserialize$o$collect$slambda).a9 = functi
|
|
|
248
248
|
continue $sm;
|
|
249
249
|
case 1:
|
|
250
250
|
var ARGUMENT = suspendResult;
|
|
251
|
-
this.
|
|
252
|
-
suspendResult = this.
|
|
251
|
+
this.l8_1 = 2;
|
|
252
|
+
suspendResult = this.p6v_1.m1f(ARGUMENT, this);
|
|
253
253
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
254
254
|
return suspendResult;
|
|
255
255
|
}
|
|
@@ -258,49 +258,49 @@ protoOf(KotlinxSerializationConverter$deserialize$o$collect$slambda).a9 = functi
|
|
|
258
258
|
case 2:
|
|
259
259
|
return Unit_instance;
|
|
260
260
|
case 3:
|
|
261
|
-
throw this.
|
|
261
|
+
throw this.o8_1;
|
|
262
262
|
}
|
|
263
263
|
} catch ($p) {
|
|
264
264
|
var e = $p;
|
|
265
|
-
if (this.
|
|
265
|
+
if (this.m8_1 === 3) {
|
|
266
266
|
throw e;
|
|
267
267
|
} else {
|
|
268
|
-
this.
|
|
269
|
-
this.
|
|
268
|
+
this.l8_1 = this.m8_1;
|
|
269
|
+
this.o8_1 = e;
|
|
270
270
|
}
|
|
271
271
|
}
|
|
272
272
|
while (true);
|
|
273
273
|
};
|
|
274
|
-
protoOf(KotlinxSerializationConverter$deserialize$o$collect$slambda).
|
|
275
|
-
var i = new KotlinxSerializationConverter$deserialize$o$collect$slambda(this.
|
|
276
|
-
i.
|
|
274
|
+
protoOf(KotlinxSerializationConverter$deserialize$o$collect$slambda).v5l = function (value, completion) {
|
|
275
|
+
var i = new KotlinxSerializationConverter$deserialize$o$collect$slambda(this.k6v_1, this.l6v_1, this.m6v_1, this.n6v_1, completion);
|
|
276
|
+
i.o6v_1 = value;
|
|
277
277
|
return i;
|
|
278
278
|
};
|
|
279
279
|
function KotlinxSerializationConverter$deserialize$o$collect$slambda_0($$this$unsafeFlow, $charset, $typeInfo, $content, resultContinuation) {
|
|
280
280
|
var i = new KotlinxSerializationConverter$deserialize$o$collect$slambda($$this$unsafeFlow, $charset, $typeInfo, $content, resultContinuation);
|
|
281
281
|
var l = function (value, $completion) {
|
|
282
|
-
return i.
|
|
282
|
+
return i.u5l(value, $completion);
|
|
283
283
|
};
|
|
284
284
|
l.$arity = 1;
|
|
285
285
|
return l;
|
|
286
286
|
}
|
|
287
287
|
function $collectCOROUTINE$_0(_this__u8e3s4, collector, resultContinuation) {
|
|
288
288
|
CoroutineImpl.call(this, resultContinuation);
|
|
289
|
-
this.
|
|
290
|
-
this.
|
|
289
|
+
this.y6v_1 = _this__u8e3s4;
|
|
290
|
+
this.z6v_1 = collector;
|
|
291
291
|
}
|
|
292
|
-
protoOf($collectCOROUTINE$_0).
|
|
293
|
-
var suspendResult = this.
|
|
292
|
+
protoOf($collectCOROUTINE$_0).t8 = function () {
|
|
293
|
+
var suspendResult = this.n8_1;
|
|
294
294
|
$sm: do
|
|
295
295
|
try {
|
|
296
|
-
var tmp = this.
|
|
296
|
+
var tmp = this.l8_1;
|
|
297
297
|
switch (tmp) {
|
|
298
298
|
case 0:
|
|
299
|
-
this.
|
|
300
|
-
var $this$unsafeFlow = this.
|
|
301
|
-
this.
|
|
302
|
-
var tmp_0 = KotlinxSerializationConverter$deserialize$o$collect$slambda_0($this$unsafeFlow, this.
|
|
303
|
-
suspendResult = this.
|
|
299
|
+
this.m8_1 = 2;
|
|
300
|
+
var $this$unsafeFlow = this.z6v_1;
|
|
301
|
+
this.l8_1 = 1;
|
|
302
|
+
var tmp_0 = KotlinxSerializationConverter$deserialize$o$collect$slambda_0($this$unsafeFlow, this.y6v_1.b6w_1, this.y6v_1.c6w_1, this.y6v_1.d6w_1, null);
|
|
303
|
+
suspendResult = this.y6v_1.a6w_1.y1e(new sam$kotlinx_coroutines_flow_FlowCollector$0_0(tmp_0), this);
|
|
304
304
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
305
305
|
return suspendResult;
|
|
306
306
|
}
|
|
@@ -309,15 +309,15 @@ protoOf($collectCOROUTINE$_0).a9 = function () {
|
|
|
309
309
|
case 1:
|
|
310
310
|
return Unit_instance;
|
|
311
311
|
case 2:
|
|
312
|
-
throw this.
|
|
312
|
+
throw this.o8_1;
|
|
313
313
|
}
|
|
314
314
|
} catch ($p) {
|
|
315
315
|
var e = $p;
|
|
316
|
-
if (this.
|
|
316
|
+
if (this.m8_1 === 2) {
|
|
317
317
|
throw e;
|
|
318
318
|
} else {
|
|
319
|
-
this.
|
|
320
|
-
this.
|
|
319
|
+
this.l8_1 = this.m8_1;
|
|
320
|
+
this.o8_1 = e;
|
|
321
321
|
}
|
|
322
322
|
}
|
|
323
323
|
while (true);
|
|
@@ -325,11 +325,11 @@ protoOf($collectCOROUTINE$_0).a9 = function () {
|
|
|
325
325
|
function serializeContent($this, serializer, format, value, contentType, charset) {
|
|
326
326
|
var tmp;
|
|
327
327
|
if (isInterface(format, StringFormat)) {
|
|
328
|
-
var content = format.
|
|
328
|
+
var content = format.j2u(isInterface(serializer, KSerializer) ? serializer : THROW_CCE(), value);
|
|
329
329
|
tmp = new TextContent(content, withCharsetIfNeeded(contentType, charset));
|
|
330
330
|
} else {
|
|
331
331
|
if (isInterface(format, BinaryFormat)) {
|
|
332
|
-
var content_0 = format.
|
|
332
|
+
var content_0 = format.l2u(isInterface(serializer, KSerializer) ? serializer : THROW_CCE(), value);
|
|
333
333
|
tmp = new ByteArrayContent(content_0, contentType);
|
|
334
334
|
} else {
|
|
335
335
|
var message = 'Unsupported format ' + toString(format);
|
|
@@ -339,20 +339,20 @@ function serializeContent($this, serializer, format, value, contentType, charset
|
|
|
339
339
|
return tmp;
|
|
340
340
|
}
|
|
341
341
|
function sam$kotlinx_coroutines_flow_FlowCollector$0(function_0) {
|
|
342
|
-
this.
|
|
342
|
+
this.e6w_1 = function_0;
|
|
343
343
|
}
|
|
344
|
-
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).
|
|
345
|
-
return this.
|
|
344
|
+
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).m1f = function (value, $completion) {
|
|
345
|
+
return this.e6w_1(value, $completion);
|
|
346
346
|
};
|
|
347
|
-
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).
|
|
348
|
-
return this.
|
|
347
|
+
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).z2 = function () {
|
|
348
|
+
return this.e6w_1;
|
|
349
349
|
};
|
|
350
350
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).equals = function (other) {
|
|
351
351
|
var tmp;
|
|
352
352
|
if (!(other == null) ? isInterface(other, FlowCollector) : false) {
|
|
353
353
|
var tmp_0;
|
|
354
354
|
if (!(other == null) ? isInterface(other, FunctionAdapter) : false) {
|
|
355
|
-
tmp_0 = equals(this.
|
|
355
|
+
tmp_0 = equals(this.z2(), other.z2());
|
|
356
356
|
} else {
|
|
357
357
|
tmp_0 = false;
|
|
358
358
|
}
|
|
@@ -363,23 +363,23 @@ protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).equals = function (other) {
|
|
|
363
363
|
return tmp;
|
|
364
364
|
};
|
|
365
365
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).hashCode = function () {
|
|
366
|
-
return hashCode(this.
|
|
366
|
+
return hashCode(this.z2());
|
|
367
367
|
};
|
|
368
368
|
function sam$kotlinx_coroutines_flow_FlowCollector$0_0(function_0) {
|
|
369
|
-
this.
|
|
369
|
+
this.f6w_1 = function_0;
|
|
370
370
|
}
|
|
371
|
-
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_0).
|
|
372
|
-
return this.
|
|
371
|
+
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_0).m1f = function (value, $completion) {
|
|
372
|
+
return this.f6w_1(value, $completion);
|
|
373
373
|
};
|
|
374
|
-
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_0).
|
|
375
|
-
return this.
|
|
374
|
+
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_0).z2 = function () {
|
|
375
|
+
return this.f6w_1;
|
|
376
376
|
};
|
|
377
377
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_0).equals = function (other) {
|
|
378
378
|
var tmp;
|
|
379
379
|
if (!(other == null) ? isInterface(other, FlowCollector) : false) {
|
|
380
380
|
var tmp_0;
|
|
381
381
|
if (!(other == null) ? isInterface(other, FunctionAdapter) : false) {
|
|
382
|
-
tmp_0 = equals(this.
|
|
382
|
+
tmp_0 = equals(this.z2(), other.z2());
|
|
383
383
|
} else {
|
|
384
384
|
tmp_0 = false;
|
|
385
385
|
}
|
|
@@ -390,46 +390,46 @@ protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_0).equals = function (other)
|
|
|
390
390
|
return tmp;
|
|
391
391
|
};
|
|
392
392
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_0).hashCode = function () {
|
|
393
|
-
return hashCode(this.
|
|
393
|
+
return hashCode(this.z2());
|
|
394
394
|
};
|
|
395
395
|
function KotlinxSerializationConverter$serialize$$inlined$map$1($this, $contentType, $charset, $typeInfo, $value) {
|
|
396
|
-
this.
|
|
397
|
-
this.
|
|
398
|
-
this.
|
|
399
|
-
this.
|
|
400
|
-
this.
|
|
396
|
+
this.x6u_1 = $this;
|
|
397
|
+
this.y6u_1 = $contentType;
|
|
398
|
+
this.z6u_1 = $charset;
|
|
399
|
+
this.a6v_1 = $typeInfo;
|
|
400
|
+
this.b6v_1 = $value;
|
|
401
401
|
}
|
|
402
|
-
protoOf(KotlinxSerializationConverter$serialize$$inlined$map$1).
|
|
402
|
+
protoOf(KotlinxSerializationConverter$serialize$$inlined$map$1).n1f = function (collector, $completion) {
|
|
403
403
|
var tmp = new $collectCOROUTINE$(this, collector, $completion);
|
|
404
|
-
tmp.
|
|
405
|
-
tmp.
|
|
406
|
-
return tmp.
|
|
404
|
+
tmp.n8_1 = Unit_instance;
|
|
405
|
+
tmp.o8_1 = null;
|
|
406
|
+
return tmp.t8();
|
|
407
407
|
};
|
|
408
|
-
protoOf(KotlinxSerializationConverter$serialize$$inlined$map$1).
|
|
409
|
-
return this.
|
|
408
|
+
protoOf(KotlinxSerializationConverter$serialize$$inlined$map$1).y1e = function (collector, $completion) {
|
|
409
|
+
return this.n1f(collector, $completion);
|
|
410
410
|
};
|
|
411
411
|
function KotlinxSerializationConverter$serialize$slambda(resultContinuation) {
|
|
412
412
|
CoroutineImpl.call(this, resultContinuation);
|
|
413
413
|
}
|
|
414
|
-
protoOf(KotlinxSerializationConverter$serialize$slambda).
|
|
415
|
-
var tmp = this.
|
|
416
|
-
tmp.
|
|
417
|
-
tmp.
|
|
418
|
-
return tmp.
|
|
414
|
+
protoOf(KotlinxSerializationConverter$serialize$slambda).p6w = function (it, $completion) {
|
|
415
|
+
var tmp = this.q6w(it, $completion);
|
|
416
|
+
tmp.n8_1 = Unit_instance;
|
|
417
|
+
tmp.o8_1 = null;
|
|
418
|
+
return tmp.t8();
|
|
419
419
|
};
|
|
420
|
-
protoOf(KotlinxSerializationConverter$serialize$slambda).
|
|
421
|
-
return this.
|
|
420
|
+
protoOf(KotlinxSerializationConverter$serialize$slambda).f9 = function (p1, $completion) {
|
|
421
|
+
return this.p6w((p1 == null ? true : p1 instanceof OutgoingContent) ? p1 : THROW_CCE(), $completion);
|
|
422
422
|
};
|
|
423
|
-
protoOf(KotlinxSerializationConverter$serialize$slambda).
|
|
424
|
-
var suspendResult = this.
|
|
423
|
+
protoOf(KotlinxSerializationConverter$serialize$slambda).t8 = function () {
|
|
424
|
+
var suspendResult = this.n8_1;
|
|
425
425
|
$sm: do
|
|
426
426
|
try {
|
|
427
|
-
var tmp = this.
|
|
427
|
+
var tmp = this.l8_1;
|
|
428
428
|
if (tmp === 0) {
|
|
429
|
-
this.
|
|
430
|
-
return !(this.
|
|
429
|
+
this.m8_1 = 1;
|
|
430
|
+
return !(this.o6w_1 == null);
|
|
431
431
|
} else if (tmp === 1) {
|
|
432
|
-
throw this.
|
|
432
|
+
throw this.o8_1;
|
|
433
433
|
}
|
|
434
434
|
} catch ($p) {
|
|
435
435
|
var e = $p;
|
|
@@ -437,57 +437,57 @@ protoOf(KotlinxSerializationConverter$serialize$slambda).a9 = function () {
|
|
|
437
437
|
}
|
|
438
438
|
while (true);
|
|
439
439
|
};
|
|
440
|
-
protoOf(KotlinxSerializationConverter$serialize$slambda).
|
|
440
|
+
protoOf(KotlinxSerializationConverter$serialize$slambda).q6w = function (it, completion) {
|
|
441
441
|
var i = new KotlinxSerializationConverter$serialize$slambda(completion);
|
|
442
|
-
i.
|
|
442
|
+
i.o6w_1 = it;
|
|
443
443
|
return i;
|
|
444
444
|
};
|
|
445
445
|
function KotlinxSerializationConverter$serialize$slambda_0(resultContinuation) {
|
|
446
446
|
var i = new KotlinxSerializationConverter$serialize$slambda(resultContinuation);
|
|
447
447
|
var l = function (it, $completion) {
|
|
448
|
-
return i.
|
|
448
|
+
return i.p6w(it, $completion);
|
|
449
449
|
};
|
|
450
450
|
l.$arity = 1;
|
|
451
451
|
return l;
|
|
452
452
|
}
|
|
453
453
|
function KotlinxSerializationConverter$deserialize$$inlined$map$1($this, $charset, $typeInfo, $content) {
|
|
454
|
-
this.
|
|
455
|
-
this.
|
|
456
|
-
this.
|
|
457
|
-
this.
|
|
454
|
+
this.a6w_1 = $this;
|
|
455
|
+
this.b6w_1 = $charset;
|
|
456
|
+
this.c6w_1 = $typeInfo;
|
|
457
|
+
this.d6w_1 = $content;
|
|
458
458
|
}
|
|
459
|
-
protoOf(KotlinxSerializationConverter$deserialize$$inlined$map$1).
|
|
459
|
+
protoOf(KotlinxSerializationConverter$deserialize$$inlined$map$1).n1f = function (collector, $completion) {
|
|
460
460
|
var tmp = new $collectCOROUTINE$_0(this, collector, $completion);
|
|
461
|
-
tmp.
|
|
462
|
-
tmp.
|
|
463
|
-
return tmp.
|
|
461
|
+
tmp.n8_1 = Unit_instance;
|
|
462
|
+
tmp.o8_1 = null;
|
|
463
|
+
return tmp.t8();
|
|
464
464
|
};
|
|
465
|
-
protoOf(KotlinxSerializationConverter$deserialize$$inlined$map$1).
|
|
466
|
-
return this.
|
|
465
|
+
protoOf(KotlinxSerializationConverter$deserialize$$inlined$map$1).y1e = function (collector, $completion) {
|
|
466
|
+
return this.n1f(collector, $completion);
|
|
467
467
|
};
|
|
468
468
|
function KotlinxSerializationConverter$deserialize$slambda($content, resultContinuation) {
|
|
469
|
-
this.
|
|
469
|
+
this.z6w_1 = $content;
|
|
470
470
|
CoroutineImpl.call(this, resultContinuation);
|
|
471
471
|
}
|
|
472
|
-
protoOf(KotlinxSerializationConverter$deserialize$slambda).
|
|
473
|
-
var tmp = this.
|
|
474
|
-
tmp.
|
|
475
|
-
tmp.
|
|
476
|
-
return tmp.
|
|
472
|
+
protoOf(KotlinxSerializationConverter$deserialize$slambda).v5m = function (it, $completion) {
|
|
473
|
+
var tmp = this.v5l(it, $completion);
|
|
474
|
+
tmp.n8_1 = Unit_instance;
|
|
475
|
+
tmp.o8_1 = null;
|
|
476
|
+
return tmp.t8();
|
|
477
477
|
};
|
|
478
|
-
protoOf(KotlinxSerializationConverter$deserialize$slambda).
|
|
479
|
-
return this.
|
|
478
|
+
protoOf(KotlinxSerializationConverter$deserialize$slambda).f9 = function (p1, $completion) {
|
|
479
|
+
return this.v5m((p1 == null ? true : !(p1 == null)) ? p1 : THROW_CCE(), $completion);
|
|
480
480
|
};
|
|
481
|
-
protoOf(KotlinxSerializationConverter$deserialize$slambda).
|
|
482
|
-
var suspendResult = this.
|
|
481
|
+
protoOf(KotlinxSerializationConverter$deserialize$slambda).t8 = function () {
|
|
482
|
+
var suspendResult = this.n8_1;
|
|
483
483
|
$sm: do
|
|
484
484
|
try {
|
|
485
|
-
var tmp = this.
|
|
485
|
+
var tmp = this.l8_1;
|
|
486
486
|
if (tmp === 0) {
|
|
487
|
-
this.
|
|
488
|
-
return !(this.
|
|
487
|
+
this.m8_1 = 1;
|
|
488
|
+
return !(this.a6x_1 == null) || this.z6w_1.r4e();
|
|
489
489
|
} else if (tmp === 1) {
|
|
490
|
-
throw this.
|
|
490
|
+
throw this.o8_1;
|
|
491
491
|
}
|
|
492
492
|
} catch ($p) {
|
|
493
493
|
var e = $p;
|
|
@@ -495,38 +495,38 @@ protoOf(KotlinxSerializationConverter$deserialize$slambda).a9 = function () {
|
|
|
495
495
|
}
|
|
496
496
|
while (true);
|
|
497
497
|
};
|
|
498
|
-
protoOf(KotlinxSerializationConverter$deserialize$slambda).
|
|
499
|
-
var i = new KotlinxSerializationConverter$deserialize$slambda(this.
|
|
500
|
-
i.
|
|
498
|
+
protoOf(KotlinxSerializationConverter$deserialize$slambda).v5l = function (it, completion) {
|
|
499
|
+
var i = new KotlinxSerializationConverter$deserialize$slambda(this.z6w_1, completion);
|
|
500
|
+
i.a6x_1 = it;
|
|
501
501
|
return i;
|
|
502
502
|
};
|
|
503
503
|
function KotlinxSerializationConverter$deserialize$slambda_0($content, resultContinuation) {
|
|
504
504
|
var i = new KotlinxSerializationConverter$deserialize$slambda($content, resultContinuation);
|
|
505
505
|
var l = function (it, $completion) {
|
|
506
|
-
return i.
|
|
506
|
+
return i.v5m(it, $completion);
|
|
507
507
|
};
|
|
508
508
|
l.$arity = 1;
|
|
509
509
|
return l;
|
|
510
510
|
}
|
|
511
511
|
function $serializeCOROUTINE$(_this__u8e3s4, contentType, charset, typeInfo, value, resultContinuation) {
|
|
512
512
|
CoroutineImpl.call(this, resultContinuation);
|
|
513
|
-
this.
|
|
514
|
-
this.
|
|
515
|
-
this.
|
|
516
|
-
this.
|
|
517
|
-
this.
|
|
513
|
+
this.j6x_1 = _this__u8e3s4;
|
|
514
|
+
this.k6x_1 = contentType;
|
|
515
|
+
this.l6x_1 = charset;
|
|
516
|
+
this.m6x_1 = typeInfo;
|
|
517
|
+
this.n6x_1 = value;
|
|
518
518
|
}
|
|
519
|
-
protoOf($serializeCOROUTINE$).
|
|
520
|
-
var suspendResult = this.
|
|
519
|
+
protoOf($serializeCOROUTINE$).t8 = function () {
|
|
520
|
+
var suspendResult = this.n8_1;
|
|
521
521
|
$sm: do
|
|
522
522
|
try {
|
|
523
|
-
var tmp = this.
|
|
523
|
+
var tmp = this.l8_1;
|
|
524
524
|
switch (tmp) {
|
|
525
525
|
case 0:
|
|
526
|
-
this.
|
|
527
|
-
this.
|
|
528
|
-
var this_0 = asFlow(this.
|
|
529
|
-
var tmp_0 = new KotlinxSerializationConverter$serialize$$inlined$map$1(this_0, this.
|
|
526
|
+
this.m8_1 = 2;
|
|
527
|
+
this.l8_1 = 1;
|
|
528
|
+
var this_0 = asFlow(this.j6x_1.p6x_1);
|
|
529
|
+
var tmp_0 = new KotlinxSerializationConverter$serialize$$inlined$map$1(this_0, this.k6x_1, this.l6x_1, this.m6x_1, this.n6x_1);
|
|
530
530
|
suspendResult = firstOrNull_0(tmp_0, KotlinxSerializationConverter$serialize$slambda_0(null), this);
|
|
531
531
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
532
532
|
return suspendResult;
|
|
@@ -539,12 +539,12 @@ protoOf($serializeCOROUTINE$).a9 = function () {
|
|
|
539
539
|
return fromExtension;
|
|
540
540
|
var tmp_1;
|
|
541
541
|
try {
|
|
542
|
-
tmp_1 = serializerForTypeInfo(this.
|
|
542
|
+
tmp_1 = serializerForTypeInfo(this.j6x_1.o6x_1.j2x(), this.m6x_1);
|
|
543
543
|
} catch ($p) {
|
|
544
544
|
var tmp_2;
|
|
545
545
|
if ($p instanceof SerializationException) {
|
|
546
546
|
var cause = $p;
|
|
547
|
-
tmp_2 = guessSerializer(this.
|
|
547
|
+
tmp_2 = guessSerializer(this.n6x_1, this.j6x_1.o6x_1.j2x());
|
|
548
548
|
} else {
|
|
549
549
|
throw $p;
|
|
550
550
|
}
|
|
@@ -552,40 +552,40 @@ protoOf($serializeCOROUTINE$).a9 = function () {
|
|
|
552
552
|
}
|
|
553
553
|
|
|
554
554
|
var serializer = tmp_1;
|
|
555
|
-
return serializeContent(this.
|
|
555
|
+
return serializeContent(this.j6x_1, serializer, this.j6x_1.o6x_1, this.n6x_1, this.k6x_1, this.l6x_1);
|
|
556
556
|
case 2:
|
|
557
|
-
throw this.
|
|
557
|
+
throw this.o8_1;
|
|
558
558
|
}
|
|
559
559
|
} catch ($p) {
|
|
560
560
|
var e = $p;
|
|
561
|
-
if (this.
|
|
561
|
+
if (this.m8_1 === 2) {
|
|
562
562
|
throw e;
|
|
563
563
|
} else {
|
|
564
|
-
this.
|
|
565
|
-
this.
|
|
564
|
+
this.l8_1 = this.m8_1;
|
|
565
|
+
this.o8_1 = e;
|
|
566
566
|
}
|
|
567
567
|
}
|
|
568
568
|
while (true);
|
|
569
569
|
};
|
|
570
570
|
function $deserializeCOROUTINE$(_this__u8e3s4, charset, typeInfo, content, resultContinuation) {
|
|
571
571
|
CoroutineImpl.call(this, resultContinuation);
|
|
572
|
-
this.
|
|
573
|
-
this.
|
|
574
|
-
this.
|
|
575
|
-
this.
|
|
572
|
+
this.y6x_1 = _this__u8e3s4;
|
|
573
|
+
this.z6x_1 = charset;
|
|
574
|
+
this.a6y_1 = typeInfo;
|
|
575
|
+
this.b6y_1 = content;
|
|
576
576
|
}
|
|
577
|
-
protoOf($deserializeCOROUTINE$).
|
|
578
|
-
var suspendResult = this.
|
|
577
|
+
protoOf($deserializeCOROUTINE$).t8 = function () {
|
|
578
|
+
var suspendResult = this.n8_1;
|
|
579
579
|
$sm: do
|
|
580
580
|
try {
|
|
581
|
-
var tmp = this.
|
|
581
|
+
var tmp = this.l8_1;
|
|
582
582
|
switch (tmp) {
|
|
583
583
|
case 0:
|
|
584
|
-
this.
|
|
585
|
-
this.
|
|
586
|
-
var this_0 = asFlow(this.
|
|
587
|
-
var tmp_0 = new KotlinxSerializationConverter$deserialize$$inlined$map$1(this_0, this.
|
|
588
|
-
suspendResult = firstOrNull_0(tmp_0, KotlinxSerializationConverter$deserialize$slambda_0(this.
|
|
584
|
+
this.m8_1 = 4;
|
|
585
|
+
this.l8_1 = 1;
|
|
586
|
+
var this_0 = asFlow(this.y6x_1.p6x_1);
|
|
587
|
+
var tmp_0 = new KotlinxSerializationConverter$deserialize$$inlined$map$1(this_0, this.z6x_1, this.a6y_1, this.b6y_1);
|
|
588
|
+
suspendResult = firstOrNull_0(tmp_0, KotlinxSerializationConverter$deserialize$slambda_0(this.b6y_1, null), this);
|
|
589
589
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
590
590
|
return suspendResult;
|
|
591
591
|
}
|
|
@@ -594,17 +594,17 @@ protoOf($deserializeCOROUTINE$).a9 = function () {
|
|
|
594
594
|
case 1:
|
|
595
595
|
var fromExtension = suspendResult;
|
|
596
596
|
var tmp_1;
|
|
597
|
-
if (!this.
|
|
598
|
-
tmp_1 = !(fromExtension == null) || this.
|
|
597
|
+
if (!this.y6x_1.p6x_1.j()) {
|
|
598
|
+
tmp_1 = !(fromExtension == null) || this.b6y_1.r4e();
|
|
599
599
|
} else {
|
|
600
600
|
tmp_1 = false;
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
if (tmp_1)
|
|
604
604
|
return fromExtension;
|
|
605
|
-
this.
|
|
606
|
-
this.
|
|
607
|
-
suspendResult = readRemaining(this.
|
|
605
|
+
this.c6y_1 = serializerForTypeInfo(this.y6x_1.o6x_1.j2x(), this.a6y_1);
|
|
606
|
+
this.l8_1 = 2;
|
|
607
|
+
suspendResult = readRemaining(this.b6y_1, this);
|
|
608
608
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
609
609
|
return suspendResult;
|
|
610
610
|
}
|
|
@@ -612,88 +612,88 @@ protoOf($deserializeCOROUTINE$).a9 = function () {
|
|
|
612
612
|
continue $sm;
|
|
613
613
|
case 2:
|
|
614
614
|
var contentPacket = suspendResult;
|
|
615
|
-
this.
|
|
616
|
-
var tmp0_subject = this.
|
|
615
|
+
this.m8_1 = 3;
|
|
616
|
+
var tmp0_subject = this.y6x_1.o6x_1;
|
|
617
617
|
var tmp_2;
|
|
618
618
|
if (isInterface(tmp0_subject, StringFormat)) {
|
|
619
|
-
tmp_2 = this.
|
|
619
|
+
tmp_2 = this.y6x_1.o6x_1.k2u(this.c6y_1, readText(contentPacket, this.z6x_1));
|
|
620
620
|
} else {
|
|
621
621
|
if (isInterface(tmp0_subject, BinaryFormat)) {
|
|
622
|
-
tmp_2 = this.
|
|
622
|
+
tmp_2 = this.y6x_1.o6x_1.m2u(this.c6y_1, readByteArray(contentPacket));
|
|
623
623
|
} else {
|
|
624
624
|
discard(contentPacket);
|
|
625
|
-
var message = 'Unsupported format ' + toString(this.
|
|
625
|
+
var message = 'Unsupported format ' + toString(this.y6x_1.o6x_1);
|
|
626
626
|
throw IllegalStateException_init_$Create$(toString(message));
|
|
627
627
|
}
|
|
628
628
|
}
|
|
629
629
|
|
|
630
630
|
return tmp_2;
|
|
631
631
|
case 3:
|
|
632
|
-
this.
|
|
633
|
-
var tmp_3 = this.
|
|
632
|
+
this.m8_1 = 4;
|
|
633
|
+
var tmp_3 = this.o8_1;
|
|
634
634
|
if (tmp_3 instanceof Error) {
|
|
635
|
-
var cause = this.
|
|
635
|
+
var cause = this.o8_1;
|
|
636
636
|
throw new JsonConvertException('Illegal input: ' + cause.message, cause);
|
|
637
637
|
} else {
|
|
638
|
-
throw this.
|
|
638
|
+
throw this.o8_1;
|
|
639
639
|
}
|
|
640
640
|
|
|
641
641
|
case 4:
|
|
642
|
-
throw this.
|
|
642
|
+
throw this.o8_1;
|
|
643
643
|
}
|
|
644
644
|
} catch ($p) {
|
|
645
645
|
var e = $p;
|
|
646
|
-
if (this.
|
|
646
|
+
if (this.m8_1 === 4) {
|
|
647
647
|
throw e;
|
|
648
648
|
} else {
|
|
649
|
-
this.
|
|
650
|
-
this.
|
|
649
|
+
this.l8_1 = this.m8_1;
|
|
650
|
+
this.o8_1 = e;
|
|
651
651
|
}
|
|
652
652
|
}
|
|
653
653
|
while (true);
|
|
654
654
|
};
|
|
655
655
|
function KotlinxSerializationConverter(format) {
|
|
656
|
-
this.
|
|
657
|
-
this.
|
|
656
|
+
this.o6x_1 = format;
|
|
657
|
+
this.p6x_1 = extensions(this.o6x_1);
|
|
658
658
|
var tmp;
|
|
659
|
-
var tmp_0 = this.
|
|
659
|
+
var tmp_0 = this.o6x_1;
|
|
660
660
|
if (isInterface(tmp_0, BinaryFormat)) {
|
|
661
661
|
tmp = true;
|
|
662
662
|
} else {
|
|
663
|
-
var tmp_1 = this.
|
|
663
|
+
var tmp_1 = this.o6x_1;
|
|
664
664
|
tmp = isInterface(tmp_1, StringFormat);
|
|
665
665
|
}
|
|
666
666
|
// Inline function 'kotlin.require' call
|
|
667
667
|
if (!tmp) {
|
|
668
|
-
var message = 'Only binary and string formats are supported, ' + toString(this.
|
|
668
|
+
var message = 'Only binary and string formats are supported, ' + toString(this.o6x_1) + ' is not supported.';
|
|
669
669
|
throw IllegalArgumentException_init_$Create$(toString(message));
|
|
670
670
|
}
|
|
671
671
|
}
|
|
672
|
-
protoOf(KotlinxSerializationConverter).
|
|
672
|
+
protoOf(KotlinxSerializationConverter).d6y = function (contentType, charset, typeInfo, value, $completion) {
|
|
673
673
|
var tmp = new $serializeCOROUTINE$(this, contentType, charset, typeInfo, value, $completion);
|
|
674
|
-
tmp.
|
|
675
|
-
tmp.
|
|
676
|
-
return tmp.
|
|
674
|
+
tmp.n8_1 = Unit_instance;
|
|
675
|
+
tmp.o8_1 = null;
|
|
676
|
+
return tmp.t8();
|
|
677
677
|
};
|
|
678
|
-
protoOf(KotlinxSerializationConverter).
|
|
679
|
-
return this.
|
|
678
|
+
protoOf(KotlinxSerializationConverter).w6t = function (contentType, charset, typeInfo, value, $completion) {
|
|
679
|
+
return this.d6y(contentType, charset, typeInfo, value, $completion);
|
|
680
680
|
};
|
|
681
|
-
protoOf(KotlinxSerializationConverter).
|
|
681
|
+
protoOf(KotlinxSerializationConverter).w5l = function (charset, typeInfo, content, $completion) {
|
|
682
682
|
var tmp = new $deserializeCOROUTINE$(this, charset, typeInfo, content, $completion);
|
|
683
|
-
tmp.
|
|
684
|
-
tmp.
|
|
685
|
-
return tmp.
|
|
683
|
+
tmp.n8_1 = Unit_instance;
|
|
684
|
+
tmp.o8_1 = null;
|
|
685
|
+
return tmp.t8();
|
|
686
686
|
};
|
|
687
687
|
function serializerForTypeInfo(_this__u8e3s4, typeInfo) {
|
|
688
688
|
var module_0 = _this__u8e3s4;
|
|
689
|
-
var tmp0_safe_receiver = typeInfo.
|
|
689
|
+
var tmp0_safe_receiver = typeInfo.b4u_1;
|
|
690
690
|
var tmp;
|
|
691
691
|
if (tmp0_safe_receiver == null) {
|
|
692
692
|
tmp = null;
|
|
693
693
|
} else {
|
|
694
694
|
// Inline function 'kotlin.let' call
|
|
695
695
|
var tmp_0;
|
|
696
|
-
if (tmp0_safe_receiver.
|
|
696
|
+
if (tmp0_safe_receiver.fb().j()) {
|
|
697
697
|
tmp_0 = null;
|
|
698
698
|
} else {
|
|
699
699
|
tmp_0 = serializerOrNull(module_0, tmp0_safe_receiver);
|
|
@@ -703,13 +703,13 @@ function serializerForTypeInfo(_this__u8e3s4, typeInfo) {
|
|
|
703
703
|
var tmp1_elvis_lhs = tmp;
|
|
704
704
|
var tmp_1;
|
|
705
705
|
if (tmp1_elvis_lhs == null) {
|
|
706
|
-
var tmp2_safe_receiver = module_0.
|
|
706
|
+
var tmp2_safe_receiver = module_0.p2u(typeInfo.a4u_1);
|
|
707
707
|
tmp_1 = tmp2_safe_receiver == null ? null : maybeNullable(tmp2_safe_receiver, typeInfo);
|
|
708
708
|
} else {
|
|
709
709
|
tmp_1 = tmp1_elvis_lhs;
|
|
710
710
|
}
|
|
711
711
|
var tmp3_elvis_lhs = tmp_1;
|
|
712
|
-
return tmp3_elvis_lhs == null ? maybeNullable(serializer(typeInfo.
|
|
712
|
+
return tmp3_elvis_lhs == null ? maybeNullable(serializer(typeInfo.a4u_1), typeInfo) : tmp3_elvis_lhs;
|
|
713
713
|
}
|
|
714
714
|
function guessSerializer(value, module_0) {
|
|
715
715
|
var tmp;
|
|
@@ -735,11 +735,11 @@ function guessSerializer(value, module_0) {
|
|
|
735
735
|
tmp = SetSerializer(elementSerializer(value, module_0));
|
|
736
736
|
} else {
|
|
737
737
|
if (!(value == null) ? isInterface(value, KtMap) : false) {
|
|
738
|
-
var keySerializer = elementSerializer(value.
|
|
739
|
-
var valueSerializer = elementSerializer(value.
|
|
738
|
+
var keySerializer = elementSerializer(value.f2(), module_0);
|
|
739
|
+
var valueSerializer = elementSerializer(value.g2(), module_0);
|
|
740
740
|
tmp = MapSerializer(keySerializer, valueSerializer);
|
|
741
741
|
} else {
|
|
742
|
-
var tmp3_elvis_lhs = module_0.
|
|
742
|
+
var tmp3_elvis_lhs = module_0.p2u(getKClassFromExpression(value));
|
|
743
743
|
tmp = tmp3_elvis_lhs == null ? serializer(getKClassFromExpression(value)) : tmp3_elvis_lhs;
|
|
744
744
|
}
|
|
745
745
|
}
|
|
@@ -751,8 +751,8 @@ function guessSerializer(value, module_0) {
|
|
|
751
751
|
}
|
|
752
752
|
function maybeNullable(_this__u8e3s4, typeInfo) {
|
|
753
753
|
var tmp;
|
|
754
|
-
var tmp0_safe_receiver = typeInfo.
|
|
755
|
-
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
754
|
+
var tmp0_safe_receiver = typeInfo.b4u_1;
|
|
755
|
+
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.gb()) === true) {
|
|
756
756
|
tmp = get_nullable(_this__u8e3s4);
|
|
757
757
|
} else {
|
|
758
758
|
tmp = _this__u8e3s4;
|
|
@@ -776,7 +776,7 @@ function elementSerializer(_this__u8e3s4, module_0) {
|
|
|
776
776
|
var _iterator__ex2g4s_0 = destination.s();
|
|
777
777
|
while (_iterator__ex2g4s_0.t()) {
|
|
778
778
|
var e = _iterator__ex2g4s_0.u();
|
|
779
|
-
var key = e.
|
|
779
|
+
var key = e.i2t().i2u();
|
|
780
780
|
if (set.p(key)) {
|
|
781
781
|
list.p(e);
|
|
782
782
|
}
|
|
@@ -789,7 +789,7 @@ function elementSerializer(_this__u8e3s4, module_0) {
|
|
|
789
789
|
var _iterator__ex2g4s_1 = serializers.s();
|
|
790
790
|
while (_iterator__ex2g4s_1.t()) {
|
|
791
791
|
var item_0 = _iterator__ex2g4s_1.u();
|
|
792
|
-
var tmp$ret$5 = item_0.
|
|
792
|
+
var tmp$ret$5 = item_0.i2t().i2u();
|
|
793
793
|
destination_0.p(tmp$ret$5);
|
|
794
794
|
}
|
|
795
795
|
// Inline function 'kotlin.error' call
|
|
@@ -798,7 +798,7 @@ function elementSerializer(_this__u8e3s4, module_0) {
|
|
|
798
798
|
}
|
|
799
799
|
var tmp0_elvis_lhs = singleOrNull(serializers);
|
|
800
800
|
var selected = tmp0_elvis_lhs == null ? serializer_0(StringCompanionObject_instance) : tmp0_elvis_lhs;
|
|
801
|
-
if (selected.
|
|
801
|
+
if (selected.i2t().t2u()) {
|
|
802
802
|
return selected;
|
|
803
803
|
}
|
|
804
804
|
if (!isInterface(selected, KSerializer))
|