@nfdi4plants/arctrl 3.1.1 → 3.2.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/dist/ts/index.d.ts +3 -0
- package/dist/ts/index.d.ts.map +1 -1
- package/dist/ts/index.js +3 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Array.js +1296 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Async.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/AsyncBuilder.js +190 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/BigInt.js +479 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Boolean.js +23 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Char.js +172 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Choice.js +187 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/CollectionUtil.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Date.js +843 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/DateOffset.js +247 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Decimal.js +279 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Double.js +53 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Collections.js +48 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Core.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Global.js +31 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Guid.js +140 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Int32.js +165 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/List.js +1282 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Long.js +40 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Map.js +1298 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MapUtil.js +126 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableMap.js +323 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableSet.js +225 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Native.js +14 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Numeric.js +63 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Option.js +81 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Random.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Range.js +47 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Reflection.js +471 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/RegExp.js +137 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Result.js +169 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq.js +1398 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq2.js +110 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Set.js +1670 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/String.js +660 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Collections.Generic.js +328 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Text.js +201 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.js +292 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/TimeSpan.js +170 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Types.js +199 -0
- package/dist/ts/node_modules/@fable-org/{fable-library-js → fable-library-ts}/Unicode.13.0.0.js +0 -2
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Uri.js +154 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Util.js +747 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/lib/big.js +1052 -0
- package/dist/ts/ts/ARC.d.ts +122 -62
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +142 -86
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts +32 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts.map +1 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.js +95 -0
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +12 -12
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLProcessingUnit.js +7 -7
- package/dist/ts/ts/CWL/CWLTypes.d.ts +62 -19
- package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLTypes.js +241 -60
- package/dist/ts/ts/CWL/Decode.d.ts +24 -25
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Decode.js +454 -314
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts +4 -4
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/DynamicObjHelpers.js +10 -10
- package/dist/ts/ts/CWL/Encode.d.ts +26 -17
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Encode.js +451 -411
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +31 -7
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ExpressionToolDescription.js +29 -8
- package/dist/ts/ts/CWL/HashHelpers.d.ts +4 -3
- package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/HashHelpers.js +9 -9
- package/dist/ts/ts/CWL/Inputs.d.ts +8 -8
- package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Inputs.js +9 -13
- package/dist/ts/ts/CWL/OperationDescription.d.ts +7 -7
- package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/OperationDescription.js +5 -8
- package/dist/ts/ts/CWL/Outputs.d.ts +10 -10
- package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Outputs.js +36 -17
- package/dist/ts/ts/CWL/ParameterReference.d.ts +13 -10
- package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ParameterReference.js +29 -21
- package/dist/ts/ts/CWL/ParameterValue.d.ts +57 -0
- package/dist/ts/ts/CWL/ParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ParameterValue.js +321 -0
- package/dist/ts/ts/CWL/Requirements.d.ts +51 -23
- package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Requirements.js +89 -81
- package/dist/ts/ts/CWL/ToolDescription.d.ts +33 -9
- package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ToolDescription.js +29 -8
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts +29 -8
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowDescription.js +26 -8
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts +45 -21
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowSteps.js +70 -34
- package/dist/ts/ts/CWLRunResolver.d.ts +11 -11
- package/dist/ts/ts/CWLRunResolver.d.ts.map +1 -1
- package/dist/ts/ts/CWLRunResolver.js +16 -16
- package/dist/ts/ts/Contract/ARC.d.ts +2 -2
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ARC.js +1 -1
- package/dist/ts/ts/Contract/ArcAssay.d.ts +7 -6
- package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcAssay.js +15 -10
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts +5 -4
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcInvestigation.js +12 -7
- package/dist/ts/ts/Contract/ArcRun.d.ts +11 -10
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcRun.js +24 -21
- package/dist/ts/ts/Contract/ArcStudy.d.ts +8 -7
- package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcStudy.js +15 -10
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +9 -8
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcWorkflow.js +20 -16
- package/dist/ts/ts/Contract/Contract.d.ts +38 -8
- package/dist/ts/ts/Contract/Contract.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Contract.js +46 -7
- package/dist/ts/ts/Contract/Datamap.d.ts +5 -4
- package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Datamap.js +45 -32
- package/dist/ts/ts/Contract/Git.d.ts +6 -5
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Git.js +4 -4
- package/dist/ts/ts/Contract/License.d.ts +4 -3
- package/dist/ts/ts/Contract/License.d.ts.map +1 -1
- package/dist/ts/ts/Contract/License.js +5 -5
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +5 -4
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +6 -7
- package/dist/ts/ts/ContractIO/ContractIO.d.ts +5 -4
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/ContractIO.js +45 -43
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +13 -12
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +6 -6
- package/dist/ts/ts/Conversion/Assay.d.ts +5 -5
- package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Assay.js +35 -16
- package/dist/ts/ts/Conversion/Basic.d.ts +16 -13
- package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Basic.js +69 -38
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts +3 -3
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ColumnIndex.js +8 -8
- package/dist/ts/ts/Conversion/Datamap.d.ts +4 -4
- package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Datamap.js +2 -2
- package/dist/ts/ts/Conversion/DateTime.d.ts +1 -1
- package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/DateTime.js +7 -6
- package/dist/ts/ts/Conversion/Investigation.d.ts +5 -5
- package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Investigation.js +17 -10
- package/dist/ts/ts/Conversion/Person.d.ts +4 -4
- package/dist/ts/ts/Conversion/Person.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Person.js +39 -23
- package/dist/ts/ts/Conversion/Process.d.ts +14 -11
- package/dist/ts/ts/Conversion/Process.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Process.js +57 -46
- package/dist/ts/ts/Conversion/Run.d.ts +12 -17
- package/dist/ts/ts/Conversion/Run.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Run.js +450 -68
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ScholarlyArticle.js +25 -17
- package/dist/ts/ts/Conversion/Study.d.ts +5 -5
- package/dist/ts/ts/Conversion/Study.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Study.js +27 -13
- package/dist/ts/ts/Conversion/Table.d.ts +10 -11
- package/dist/ts/ts/Conversion/Table.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Table.js +17 -24
- package/dist/ts/ts/Conversion/Workflow.d.ts +17 -17
- package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Workflow.js +78 -40
- package/dist/ts/ts/Conversion.d.ts +10 -11
- package/dist/ts/ts/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Conversion.js +2 -2
- package/dist/ts/ts/Core/ArcTypes.d.ts +331 -76
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
- package/dist/ts/ts/Core/ArcTypes.js +567 -299
- package/dist/ts/ts/Core/Comment.d.ts +5 -5
- package/dist/ts/ts/Core/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Core/Comment.js +17 -10
- package/dist/ts/ts/Core/CommentList.d.ts +3 -3
- package/dist/ts/ts/Core/CommentList.d.ts.map +1 -1
- package/dist/ts/ts/Core/CommentList.js +8 -8
- package/dist/ts/ts/Core/Conversion.d.ts +25 -25
- package/dist/ts/ts/Core/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Core/Conversion.js +102 -102
- package/dist/ts/ts/Core/Data.d.ts +6 -6
- package/dist/ts/ts/Core/Data.d.ts.map +1 -1
- package/dist/ts/ts/Core/Data.js +11 -10
- package/dist/ts/ts/Core/DataContext.d.ts +10 -10
- package/dist/ts/ts/Core/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataContext.js +3 -3
- package/dist/ts/ts/Core/DataFile.d.ts +9 -6
- package/dist/ts/ts/Core/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataFile.js +20 -9
- package/dist/ts/ts/Core/Datamap.d.ts +17 -16
- package/dist/ts/ts/Core/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Core/Datamap.js +16 -14
- package/dist/ts/ts/Core/Helper/Collections.d.ts +4 -4
- package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Collections.js +30 -37
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts +15 -4
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/HashCodes.js +33 -14
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.js +10 -8
- package/dist/ts/ts/Core/Helper/ORCID.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.js +4 -3
- package/dist/ts/ts/Core/Helper/Regex.d.ts +7 -7
- package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Regex.js +20 -12
- package/dist/ts/ts/Core/Helper/SemVer.d.ts +5 -5
- package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/SemVer.js +7 -7
- package/dist/ts/ts/Core/Helper/Url.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Url.js +8 -7
- package/dist/ts/ts/Core/IdentifierSetters.d.ts +2 -2
- package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts +23 -5
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.js +116 -45
- package/dist/ts/ts/Core/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologySourceReference.js +4 -4
- package/dist/ts/ts/Core/Person.d.ts +19 -9
- package/dist/ts/ts/Core/Person.d.ts.map +1 -1
- package/dist/ts/ts/Core/Person.js +27 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +11 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ColumnIndex.js +68 -29
- package/dist/ts/ts/Core/Process/Component.d.ts +16 -16
- package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Component.js +38 -25
- package/dist/ts/ts/Core/Process/Factor.d.ts +53 -8
- package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Factor.js +62 -11
- package/dist/ts/ts/Core/Process/FactorValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/FactorValue.js +39 -47
- package/dist/ts/ts/Core/Process/Material.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Material.js +5 -5
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +7 -7
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +17 -8
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +45 -48
- package/dist/ts/ts/Core/Process/MaterialType.d.ts +7 -5
- package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialType.js +14 -7
- package/dist/ts/ts/Core/Process/Process.d.ts +22 -22
- package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Process.js +42 -26
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessInput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessOutput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +30 -15
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +56 -46
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +16 -16
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessSequence.js +33 -26
- package/dist/ts/ts/Core/Process/Protocol.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Protocol.js +21 -13
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +28 -7
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +33 -8
- package/dist/ts/ts/Core/Process/Sample.d.ts +10 -10
- package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Sample.js +5 -5
- package/dist/ts/ts/Core/Process/Source.d.ts +8 -8
- package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Source.js +5 -5
- package/dist/ts/ts/Core/Publication.d.ts +5 -5
- package/dist/ts/ts/Core/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Core/Publication.js +18 -11
- package/dist/ts/ts/Core/ScalarValue.d.ts +41 -0
- package/dist/ts/ts/Core/ScalarValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/{Value.js → ScalarValue.js} +56 -29
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +134 -15
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTable.js +204 -68
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +15 -10
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTableAux.js +75 -71
- package/dist/ts/ts/Core/Table/ArcTables.d.ts +12 -9
- package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTables.js +42 -38
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts +46 -7
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeCell.js +52 -12
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +20 -7
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeColumn.js +17 -4
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +116 -22
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeHeader.js +219 -65
- package/dist/ts/ts/Core/Template.d.ts +15 -9
- package/dist/ts/ts/Core/Template.d.ts.map +1 -1
- package/dist/ts/ts/Core/Template.js +19 -11
- package/dist/ts/ts/Core/Templates.d.ts +24 -5
- package/dist/ts/ts/Core/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Core/Templates.js +26 -8
- package/dist/ts/ts/Core/URI.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.d.ts +6 -5
- package/dist/ts/ts/CrossAsync.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.js +6 -6
- package/dist/ts/ts/FileSystem/Commit.d.ts +3 -3
- package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Commit.js +2 -2
- package/dist/ts/ts/FileSystem/FileSystem.d.ts +9 -9
- package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystem.js +4 -4
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +35 -16
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystemTree.js +36 -18
- package/dist/ts/ts/FileSystem/Path.d.ts +9 -8
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Path.js +13 -13
- package/dist/ts/ts/Json/Assay.d.ts +9 -9
- package/dist/ts/ts/Json/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Json/Assay.js +86 -50
- package/dist/ts/ts/Json/Comment.d.ts +4 -4
- package/dist/ts/ts/Json/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Json/Comment.js +38 -17
- package/dist/ts/ts/Json/Data.d.ts +7 -7
- package/dist/ts/ts/Json/Data.d.ts.map +1 -1
- package/dist/ts/ts/Json/Data.js +48 -20
- package/dist/ts/ts/Json/DataFile.d.ts +2 -2
- package/dist/ts/ts/Json/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Json/DataFile.js +10 -9
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts +2 -2
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/DataContext.js +14 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts +7 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/Datamap.js +4 -4
- package/dist/ts/ts/Json/Decode.d.ts +6 -6
- package/dist/ts/ts/Json/Decode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Decode.js +32 -32
- package/dist/ts/ts/Json/Encode.d.ts +6 -5
- package/dist/ts/ts/Json/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Encode.js +28 -26
- package/dist/ts/ts/Json/IDTable.d.ts +2 -2
- package/dist/ts/ts/Json/IDTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/IDTable.js +2 -2
- package/dist/ts/ts/Json/Investigation.d.ts +9 -9
- package/dist/ts/ts/Json/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Json/Investigation.js +68 -33
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts +6 -6
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologyAnnotation.js +60 -25
- package/dist/ts/ts/Json/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologySourceReference.js +36 -15
- package/dist/ts/ts/Json/Person.d.ts +5 -5
- package/dist/ts/ts/Json/Person.d.ts.map +1 -1
- package/dist/ts/ts/Json/Person.js +57 -29
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/AssayMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Component.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Component.js +25 -11
- package/dist/ts/ts/Json/Process/Factor.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Factor.js +17 -9
- package/dist/ts/ts/Json/Process/FactorValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/FactorValue.js +14 -7
- package/dist/ts/ts/Json/Process/Material.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Material.js +31 -31
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +4 -4
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +16 -8
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +14 -7
- package/dist/ts/ts/Json/Process/MaterialType.d.ts +2 -2
- package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialType.js +9 -8
- package/dist/ts/ts/Json/Process/Process.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Process.js +28 -14
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessInput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessOutput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +16 -8
- package/dist/ts/ts/Json/Process/Protocol.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Protocol.js +30 -16
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +16 -8
- package/dist/ts/ts/Json/Process/Sample.d.ts +7 -7
- package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Sample.js +37 -60
- package/dist/ts/ts/Json/Process/Source.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Source.js +34 -57
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/StudyMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Value.d.ts +6 -6
- package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Value.js +4 -4
- package/dist/ts/ts/Json/PropertyValue.d.ts +6 -6
- package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/PropertyValue.js +31 -22
- package/dist/ts/ts/Json/Publication.d.ts +5 -5
- package/dist/ts/ts/Json/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Json/Publication.js +36 -15
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDContext.js +17 -16
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +21 -14
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDNode.js +94 -29
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDRef.js +4 -4
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDValue.js +8 -7
- package/dist/ts/ts/Json/Run.d.ts +7 -7
- package/dist/ts/ts/Json/Run.d.ts.map +1 -1
- package/dist/ts/ts/Json/Run.js +28 -14
- package/dist/ts/ts/Json/StringTable.d.ts +7 -7
- package/dist/ts/ts/Json/StringTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/StringTable.js +10 -10
- package/dist/ts/ts/Json/Study.d.ts +9 -9
- package/dist/ts/ts/Json/Study.d.ts.map +1 -1
- package/dist/ts/ts/Json/Study.js +79 -45
- package/dist/ts/ts/Json/Table/ArcTable.d.ts +10 -10
- package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/ArcTable.js +28 -28
- package/dist/ts/ts/Json/Table/CellTable.d.ts +9 -9
- package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CellTable.js +8 -8
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts +6 -6
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeCell.js +7 -7
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +2 -2
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeHeader.js +7 -7
- package/dist/ts/ts/Json/Table/IOType.d.ts +2 -2
- package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/IOType.js +2 -2
- package/dist/ts/ts/Json/Table/OATable.d.ts +8 -8
- package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/OATable.js +8 -8
- package/dist/ts/ts/Json/Table/Templates.d.ts +9 -9
- package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/Templates.js +11 -11
- package/dist/ts/ts/Json/Workflow.d.ts +7 -7
- package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Json/Workflow.js +28 -14
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.js +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +3 -3
- package/dist/ts/ts/Json.d.ts +9 -9
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +2 -2
- package/dist/ts/ts/JsonIO/Assay.d.ts +6 -7
- package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Assay.js +13 -12
- package/dist/ts/ts/JsonIO/Datamap.d.ts +3 -4
- package/dist/ts/ts/JsonIO/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Datamap.js +7 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Investigation.js +11 -10
- package/dist/ts/ts/JsonIO/LDObject.d.ts +5 -6
- package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/LDObject.js +14 -13
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +11 -10
- package/dist/ts/ts/JsonIO/Person.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Person.js +11 -10
- package/dist/ts/ts/JsonIO/Run.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Run.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Run.js +9 -8
- package/dist/ts/ts/JsonIO/Study.d.ts +7 -8
- package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Study.js +13 -12
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts +6 -6
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Compression.js +4 -4
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts +10 -10
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Templates.js +13 -12
- package/dist/ts/ts/JsonIO/Workflow.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Workflow.js +9 -8
- package/dist/ts/ts/License.d.ts +12 -6
- package/dist/ts/ts/License.d.ts.map +1 -1
- package/dist/ts/ts/License.js +49 -14
- package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/Helper.js +1 -1
- package/dist/ts/ts/ROCrate/LDContext.d.ts +15 -4
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDContext.js +27 -16
- package/dist/ts/ts/ROCrate/LDObject.d.ts +19 -10
- package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDObject.js +76 -38
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Comment.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +22 -16
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.js +25 -23
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.js +48 -45
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/File.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.js +16 -14
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Organization.js +8 -6
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Person.js +28 -25
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts +10 -6
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.js +104 -61
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Sample.js +14 -13
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.js +12 -10
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +11 -10
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +4 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +4 -3
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.js +2 -2
- package/dist/ts/ts/ROCrateIO.d.ts +13 -8
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
- package/dist/ts/ts/ROCrateIO.js +16 -13
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +13 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +15 -15
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +23 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +17 -18
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +18 -17
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +37 -29
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +6 -6
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +16 -15
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +21 -21
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcRun.js +9 -9
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +13 -12
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +9 -9
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +8 -8
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +11 -11
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts +2 -2
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Datamap.js +6 -5
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts +4 -4
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.js +14 -10
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.js +30 -21
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +12 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +11 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +8 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +11 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +13 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +55 -49
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +8 -8
- package/dist/ts/ts/Template.Web.d.ts +10 -6
- package/dist/ts/ts/Template.Web.d.ts.map +1 -1
- package/dist/ts/ts/Template.Web.js +4 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +6 -3
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +10 -7
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +7 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +29 -24
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +4 -4
- package/dist/ts/ts/WebRequest/WebRequest.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.js +3 -3
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts +6 -6
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Adapters.js +13 -13
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts +7 -4
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/BuildOptions.js +2 -2
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts +25 -19
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Builder.js +82 -68
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts +52 -32
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/GraphTypes.js +90 -30
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts +5 -5
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.js +4 -4
- package/dist/ts/ts/Xlsx.d.ts +5 -5
- package/dist/ts/ts/Xlsx.d.ts.map +1 -1
- package/dist/ts/ts/Xlsx.js +8 -6
- package/dist/ts/ts/Yaml/Encode.d.ts +2 -2
- package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/Encode.js +2 -2
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.js +12 -12
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +12 -12
- package/dist/ts/ts/Yaml.d.ts +3 -3
- package/dist/ts/ts/Yaml.d.ts.map +1 -1
- package/dist/ts/ts/Yaml.js +3 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/DynObj.fs.js +6 -6
- package/dist/ts/ts/fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js +515 -0
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/FableJS.fs.js +23 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/HashCodes.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/PropertyHelper.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/ReflectionUtils.fs.js +16 -6
- package/dist/ts/ts/fable_modules/{Fable.Fetch.2.6.0 → Fable.Fetch.2.7.0}/Fetch.fs.js +11 -11
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +8 -7
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Http.fs.js +21 -21
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Types.fs.js +52 -19
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCell.fs.js +255 -126
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCellsCollection.fs.js +135 -18
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/CellBuilder.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Expression.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/RowBuilder.fs.js +5 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Types.fs.js +16 -16
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsAddress.fs.js +41 -17
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsColumn.fs.js +70 -7
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsRow.fs.js +76 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorkbook.fs.js +77 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorksheet.fs.js +237 -32
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/HashCodes.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Cell.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Column.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Row.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Table.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Value.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Workbook.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Worksheet.fs.js +8 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRange.fs.js +6 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeAddress.fs.js +11 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeBase.fs.js +18 -13
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeColumn.fs.js +9 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeRow.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTable.fs.js +185 -26
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTableField.fs.js +48 -5
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.1/Cell.fs.js +65 -0
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/FsExtensions.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Json.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Table.fs.js +15 -14
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Workbook.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Worksheet.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Xlsx.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Decode.fs.js +265 -159
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Encode.fs.js +94 -36
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Types.fs.js +16 -22
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Decode.fs.js +9 -7
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Encode.fs.js +2 -3
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Decode.fs.js +98 -104
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Encode.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Escapes.fs.js +41 -34
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Persil.fs.js +48 -48
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Preprocessing.fs.js +14 -14
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Reader.fs.js +129 -112
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Regex.fs.js +23 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/RegexActivePatterns.fs.js +14 -14
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Syntax.fs.js +77 -56
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Writer.fs.js +34 -31
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/YAMLiciousTypes.fs.js +74 -32
- package/package.json +3 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +0 -1244
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +0 -146
- package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +0 -186
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +0 -286
- package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +0 -24
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +0 -172
- package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +0 -187
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +0 -185
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +0 -750
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +0 -271
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +0 -214
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +0 -30
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +0 -72
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +0 -145
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +0 -137
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +0 -1276
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +0 -1399
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +0 -130
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +0 -330
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +0 -236
- package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +0 -73
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +0 -99
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +0 -48
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +0 -465
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +0 -133
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +0 -168
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +0 -1381
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +0 -114
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +0 -1792
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +0 -557
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Collections.Generic.js +0 -320
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +0 -165
- package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +0 -8
- package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +0 -180
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +0 -211
- package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +0 -160
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +0 -771
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +0 -825
- package/dist/ts/ts/Core/Value.d.ts +0 -41
- package/dist/ts/ts/Core/Value.d.ts.map +0 -1
- package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js +0 -367
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +0 -68
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.11/Regex.fs.js +0 -21
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.11/StringBuffer.fs.js +0 -60
- /package/dist/ts/ts/fable_modules/{Fable.Exceljs.1.6.0 → Fable.Exceljs.2.0.0_565fc3e-alpha.1}/ExcelJs.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Interop/JsInterop.fs.js +0 -0
package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Reader.fs.js
RENAMED
|
@@ -1,17 +1,18 @@
|
|
|
1
|
+
import { parse } from '../../../node_modules/@fable-org/fable-library-ts/Int32.js';
|
|
1
2
|
import { unescapeDoubleQuoted } from './Escapes.fs.js';
|
|
2
|
-
import { PreprocessorElement_Line,
|
|
3
|
-
import { match, create, replace } from '../../../node_modules/@fable-org/fable-library-
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { getItemFromDict } from '../../../node_modules/@fable-org/fable-library-
|
|
7
|
-
import {
|
|
3
|
+
import { PreprocessorElement_Line, ScalarStyle, YAMLContent_create_Z1C3A29C9, YAMLContent, YAMLElement_Comment$, YAMLElement, YAMLElement_Value, YAMLElement_Mapping, YAMLElement_Object$, YAMLElement_Sequence, ScalarStyle_Block, YAMLElement_Alias } from './YAMLiciousTypes.fs.js';
|
|
4
|
+
import { match, create, replace } from '../../../node_modules/@fable-org/fable-library-ts/RegExp.js';
|
|
5
|
+
import { concat, toFail, printf, substring, join, trimStart, split } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
6
|
+
import { value, unwrap } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
7
|
+
import { getItemFromDict } from '../../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
8
|
+
import { Exception } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
9
|
+
import { isEmpty, head, tail, empty, cons, append, singleton as singleton$1, collect, reverse, length, filter, map, ofArrayWithTail, exists, ofArray } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
8
10
|
import { $007CYamlComment$007C_$007C, $007CSequenceMinusOpener$007C_$007C, $007CKey$007C_$007C, $007CKeyValue$007C_$007C, $007CDocumentEnd$007C_$007C, $007CYamlValue$007C_$007C, $007CAliasNode$007C_$007C, $007CSchemaNamespace$007C_$007C, $007CInlineSequence$007C_$007C, $007CSequenceSquareOpener$007C_$007C, $007CSequenceSquareCloser$007C_$007C, $007CInlineJSON$007C_$007C, $007CJSONKeyOpener$007C_$007C, $007CJSONCloser$007C_$007C, $007CExplicitKey$007C_$007C, $007CExplicitValue$007C_$007C } from './RegexActivePatterns.fs.js';
|
|
9
|
-
import { toList, delay, append as append$1, singleton, empty as empty$1, takeWhile, skipWhile, map as map$
|
|
10
|
-
import { toFail, printf, substring, join, trimStart, split } from '../../../node_modules/@fable-org/fable-library-js/String.js';
|
|
11
|
+
import { toList, delay, append as append$1, singleton, empty as empty$1, takeWhile, skipWhile, map as map$1 } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
11
12
|
import { VerbatimTagPattern, AnchorPattern } from './Regex.fs.js';
|
|
12
|
-
import { tryFind } from '../../../node_modules/@fable-org/fable-library-
|
|
13
|
+
import { tryFind } from '../../../node_modules/@fable-org/fable-library-ts/Map.js';
|
|
13
14
|
import { Placeholder_splitTrailingComment, BlockScalar_parseHeader, BlockScalar_buildContent, Placeholder_tryParseComment, FlowTokens_tokenize, Document_isTopLevelMarker, Document_isStart, Document_tryInlineContentAfterStartMarker, Document_isDirectivePreludeOnly, Document_isEnd, BlockScalar_tryDetectHeaderIndent, Line_countLeadingSpaces, Line_normalizeNewlines } from './Syntax.fs.js';
|
|
14
|
-
import { Queue$1_$ctor_BB573A, Queue$1__Dequeue } from '../../../node_modules/@fable-org/fable-library-
|
|
15
|
+
import { Queue$1_$ctor_BB573A, Queue$1__Dequeue } from '../../../node_modules/@fable-org/fable-library-ts/System.Collections.Generic.js';
|
|
15
16
|
import { read as read$1 } from './Preprocessing.fs.js';
|
|
16
17
|
|
|
17
18
|
function restoreScalarPlaceholderValue(entry) {
|
|
@@ -31,7 +32,7 @@ function restoreBlockScalarPlaceholderValue(entry) {
|
|
|
31
32
|
}
|
|
32
33
|
}
|
|
33
34
|
function tryParseExactPlaceholderIndex(v) {
|
|
34
|
-
const m = match(create(
|
|
35
|
+
const m = match(create(concat("^", "<s f=(?<index>\\d+)\\/>", "$")), v.trim());
|
|
35
36
|
if (m != null) {
|
|
36
37
|
return parse(m.groups && m.groups.index || "", 511, false, 32);
|
|
37
38
|
} else {
|
|
@@ -42,11 +43,16 @@ function restoreStringReplace(stringDict, v) {
|
|
|
42
43
|
return replace(v, "<s f=(?<index>\\d+)\\/>", (m) => restoreScalarPlaceholderValue(getItemFromDict(stringDict, parse(m.groups && m.groups.index || "", 511, false, 32))));
|
|
43
44
|
}
|
|
44
45
|
function restoreCommentReplace(commentDict, commentId) {
|
|
45
|
-
|
|
46
|
+
const option_1 = commentId;
|
|
47
|
+
if (option_1 != null) {
|
|
48
|
+
return getItemFromDict(commentDict, value(option_1));
|
|
49
|
+
} else {
|
|
50
|
+
return void 0;
|
|
51
|
+
}
|
|
46
52
|
}
|
|
47
53
|
function isBlankLineElement(_arg) {
|
|
48
|
-
let line;
|
|
49
|
-
let matchResult, line_1;
|
|
54
|
+
let line = void 0;
|
|
55
|
+
let matchResult = void 0, line_1 = void 0;
|
|
50
56
|
if (_arg.tag === /* Line */
|
|
51
57
|
2) {
|
|
52
58
|
if (line = _arg.fields[0], line.trim() === "") {
|
|
@@ -66,7 +72,7 @@ function isBlankLineElement(_arg) {
|
|
|
66
72
|
}
|
|
67
73
|
}
|
|
68
74
|
function takeLeadingSequenceItemPrefix(eles) {
|
|
69
|
-
let matchResult, line_1, rest_1, commentElement, rest_2;
|
|
75
|
+
let matchResult = void 0, line_1 = void 0, rest_1 = void 0, commentElement = void 0, rest_2 = void 0;
|
|
70
76
|
if (!isEmpty(eles)) {
|
|
71
77
|
if (isBlankLineElement(head(eles))) {
|
|
72
78
|
matchResult = 0;
|
|
@@ -98,7 +104,7 @@ function takeLeadingSequenceItemPrefix(eles) {
|
|
|
98
104
|
function splitLeadingSequenceItemContinuation(eles) {
|
|
99
105
|
const patternInput = takeLeadingSequenceItemPrefix(eles);
|
|
100
106
|
const afterPrefix = patternInput[1];
|
|
101
|
-
let matchResult, tail$1, yamlAstList;
|
|
107
|
+
let matchResult = void 0, tail$1 = void 0, yamlAstList = void 0;
|
|
102
108
|
if (patternInput[2]) {
|
|
103
109
|
if (!isEmpty(afterPrefix)) {
|
|
104
110
|
if (head(afterPrefix).tag === /* Intendation */
|
|
@@ -126,7 +132,7 @@ function collectSequenceElements(eles_mut) {
|
|
|
126
132
|
collectSequenceElements:
|
|
127
133
|
while (true) {
|
|
128
134
|
const eles = eles_mut;
|
|
129
|
-
let matchResult, line_1, rest_1, rest_2, v, yamlAstList;
|
|
135
|
+
let matchResult = void 0, line_1 = void 0, rest_1 = void 0, rest_2 = void 0, v = void 0, yamlAstList = void 0;
|
|
130
136
|
if (!isEmpty(eles)) {
|
|
131
137
|
if (isBlankLineElement(head(eles))) {
|
|
132
138
|
matchResult = 0;
|
|
@@ -188,7 +194,7 @@ function collectSequenceElements(eles_mut) {
|
|
|
188
194
|
}
|
|
189
195
|
}
|
|
190
196
|
function isSequenceElement(e) {
|
|
191
|
-
let matchResult;
|
|
197
|
+
let matchResult = void 0;
|
|
192
198
|
if (e.tag === /* Intendation */
|
|
193
199
|
1) {
|
|
194
200
|
matchResult = 0;
|
|
@@ -263,16 +269,16 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
263
269
|
} else {
|
|
264
270
|
const entry = getItemFromDict(stringDict, value(matchValue));
|
|
265
271
|
return [restoreScalarPlaceholderValue(entry), entry.Kind.tag === /* DoubleQuotedString */
|
|
266
|
-
1 ?
|
|
272
|
+
1 ? ScalarStyle.DoubleQuoted : ScalarStyle.SingleQuoted];
|
|
267
273
|
}
|
|
268
274
|
};
|
|
269
275
|
const extractProperties = (handles_2, v) => {
|
|
270
|
-
let shorthand, m_2, handle, suffix, matchValue_2;
|
|
271
276
|
let current = v.trim();
|
|
272
277
|
let tag = void 0;
|
|
273
278
|
let anchor = void 0;
|
|
274
279
|
let changed = true;
|
|
275
280
|
while (changed) {
|
|
281
|
+
let shorthand = void 0, m_2 = void 0, handle = void 0, suffix = void 0, matchValue_2 = void 0;
|
|
276
282
|
changed = false;
|
|
277
283
|
const mTag = match(create(VerbatimTagPattern), current);
|
|
278
284
|
if (mTag != null) {
|
|
@@ -335,20 +341,20 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
335
341
|
}
|
|
336
342
|
};
|
|
337
343
|
const tryCollapsePlainScalarContent = (hasInlineFirstLine, block_1, parsed) => {
|
|
338
|
-
let values, renderedBlockLines;
|
|
344
|
+
let values = void 0, renderedBlockLines = void 0;
|
|
339
345
|
let matchValue_6;
|
|
340
346
|
const element = parsed;
|
|
341
347
|
const loop = (allowMetadata_1_mut, items_mut, acc_mut) => {
|
|
342
|
-
let content, matchValue_4;
|
|
343
348
|
loop:
|
|
344
349
|
while (true) {
|
|
345
350
|
const allowMetadata_1 = allowMetadata_1_mut, items = items_mut, acc = acc_mut;
|
|
346
|
-
let
|
|
351
|
+
let content = void 0, hasPlainCompatibleStyle = void 0, matchValue_4 = void 0, hasOnlyContinuationContent = void 0;
|
|
352
|
+
let matchResult = void 0, content_2 = void 0, rest_1 = void 0;
|
|
347
353
|
if (!isEmpty(items)) {
|
|
348
354
|
if (head(items).tag === /* Value */
|
|
349
355
|
1) {
|
|
350
|
-
if (content = head(items).fields[0], (matchValue_4 = content.Style, matchValue_4 != null ? value(matchValue_4).tag === /* Plain */
|
|
351
|
-
0 : true)
|
|
356
|
+
if (content = head(items).fields[0], hasPlainCompatibleStyle = (matchValue_4 = content.Style, matchValue_4 != null ? value(matchValue_4).tag === /* Plain */
|
|
357
|
+
0 : true), hasOnlyContinuationContent = content.Comment == null && content.Anchor == null && content.Tag == null, hasPlainCompatibleStyle && (allowMetadata_1 ? true : hasOnlyContinuationContent)) {
|
|
352
358
|
matchResult = 1;
|
|
353
359
|
content_2 = head(items).fields[0];
|
|
354
360
|
rest_1 = tail(items);
|
|
@@ -384,7 +390,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
384
390
|
};
|
|
385
391
|
matchValue_6 = element.tag === /* Object */
|
|
386
392
|
3 ? loop(true, element.fields[0], empty()) : void 0;
|
|
387
|
-
let matchResult_1, firstSegment, segments_1;
|
|
393
|
+
let matchResult_1 = void 0, firstSegment = void 0, segments_1 = void 0;
|
|
388
394
|
if (matchValue_6 != null) {
|
|
389
395
|
if (!isEmpty(value(matchValue_6))) {
|
|
390
396
|
matchResult_1 = 0;
|
|
@@ -399,25 +405,25 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
399
405
|
switch (matchResult_1) {
|
|
400
406
|
case 0: {
|
|
401
407
|
const rawBlockLines = flattenBlockScalarContent(block_1);
|
|
402
|
-
const rawValue = join("\n", (hasInlineFirstLine ? length(segments_1) - 1 : length(segments_1)) === length(filter((line_1) => line_1.trim() !== "", rawBlockLines)) ? (values = Queue$1_$ctor_BB573A(hasInlineFirstLine ? tail(segments_1) : segments_1), renderedBlockLines = map
|
|
408
|
+
const rawValue = join("\n", (hasInlineFirstLine ? length(segments_1) - 1 : length(segments_1)) === length(filter((line_1) => line_1.trim() !== "", rawBlockLines)) ? (values = Queue$1_$ctor_BB573A(hasInlineFirstLine ? tail(segments_1) : segments_1), renderedBlockLines = map((rawLine) => {
|
|
403
409
|
if (rawLine.trim() === "") {
|
|
404
410
|
return "";
|
|
405
411
|
} else {
|
|
406
412
|
return Queue$1__Dequeue(values).Value;
|
|
407
413
|
}
|
|
408
|
-
}, rawBlockLines), hasInlineFirstLine ? cons(firstSegment.Value, renderedBlockLines) : renderedBlockLines) : map
|
|
409
|
-
return new YAMLContent(rawValue, firstSegment.Comment, firstSegment.Anchor, firstSegment.Tag, rawValue.indexOf("\n") >= 0 ?
|
|
414
|
+
}, rawBlockLines), hasInlineFirstLine ? cons(firstSegment.Value, renderedBlockLines) : renderedBlockLines) : map((segment) => segment.Value, segments_1));
|
|
415
|
+
return new YAMLContent(rawValue, firstSegment.Comment, firstSegment.Anchor, firstSegment.Tag, rawValue.indexOf("\n") >= 0 ? ScalarStyle.Plain : firstSegment.Style);
|
|
410
416
|
}
|
|
411
417
|
default:
|
|
412
418
|
return void 0;
|
|
413
419
|
}
|
|
414
420
|
};
|
|
415
421
|
const takePlainScalarContinuationContents = (elements_1_mut, acc_1_mut) => {
|
|
416
|
-
let v_1;
|
|
417
422
|
takePlainScalarContinuationContents:
|
|
418
423
|
while (true) {
|
|
419
424
|
const elements_1 = elements_1_mut, acc_1 = acc_1_mut;
|
|
420
|
-
let
|
|
425
|
+
let v_1 = void 0;
|
|
426
|
+
let matchResult_2 = void 0;
|
|
421
427
|
if (isEmpty(elements_1)) {
|
|
422
428
|
matchResult_2 = 0;
|
|
423
429
|
} else if ($007CKey$007C_$007C(head(elements_1)) != null) {
|
|
@@ -437,7 +443,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
437
443
|
case 0:
|
|
438
444
|
return [reverse(acc_1), elements_1];
|
|
439
445
|
default: {
|
|
440
|
-
let matchResult_3, rest_3, v_2;
|
|
446
|
+
let matchResult_3 = void 0, rest_3 = void 0, v_2 = void 0;
|
|
441
447
|
if (!isEmpty(elements_1)) {
|
|
442
448
|
const activePatternResult_5 = $007CYamlValue$007C_$007C(head(elements_1));
|
|
443
449
|
if (activePatternResult_5 != null) {
|
|
@@ -461,7 +467,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
461
467
|
const matchValue_8 = content_3.Comment;
|
|
462
468
|
const matchValue_9 = content_3.Anchor;
|
|
463
469
|
const matchValue_10 = content_3.Tag;
|
|
464
|
-
let matchResult_4;
|
|
470
|
+
let matchResult_4 = void 0;
|
|
465
471
|
if (matchValue_7 != null) {
|
|
466
472
|
if (value(matchValue_7).tag === /* Plain */
|
|
467
473
|
0) {
|
|
@@ -516,7 +522,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
516
522
|
takeLeadingComments:
|
|
517
523
|
while (true) {
|
|
518
524
|
const elements_2 = elements_2_mut;
|
|
519
|
-
let matchResult_5, line_3, rest_5, commentElement, rest_6;
|
|
525
|
+
let matchResult_5 = void 0, line_3 = void 0, rest_5 = void 0, commentElement = void 0, rest_6 = void 0;
|
|
520
526
|
if (!isEmpty(elements_2)) {
|
|
521
527
|
if (isBlankLineElement(head(elements_2))) {
|
|
522
528
|
matchResult_5 = 0;
|
|
@@ -547,17 +553,17 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
547
553
|
break;
|
|
548
554
|
}
|
|
549
555
|
};
|
|
550
|
-
const commentTokensToYaml = (comments_1) => map
|
|
556
|
+
const commentTokensToYaml = (comments_1) => map((_arg_3) => {
|
|
551
557
|
const activePatternResult_7 = $007CYamlComment$007C_$007C(_arg_3);
|
|
552
558
|
if (activePatternResult_7 != null) {
|
|
553
559
|
const comment_2 = value(activePatternResult_7);
|
|
554
|
-
return YAMLElement_Comment(getItemFromDict(commentDict, comment_2.Comment));
|
|
560
|
+
return YAMLElement_Comment$(getItemFromDict(commentDict, comment_2.Comment));
|
|
555
561
|
} else {
|
|
556
562
|
return toFail(printf("Expected leading comment token, got: %A"))(_arg_3);
|
|
557
563
|
}
|
|
558
564
|
}, comments_1);
|
|
559
565
|
const parseFlowNode = (tokens) => {
|
|
560
|
-
let matchResult_6, rest_7, rest_8;
|
|
566
|
+
let matchResult_6 = void 0, rest_7 = void 0, rest_8 = void 0;
|
|
561
567
|
if (!isEmpty(tokens)) {
|
|
562
568
|
switch (head(tokens).tag) {
|
|
563
569
|
case /* OpenBrace */
|
|
@@ -603,14 +609,21 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
603
609
|
case 3:
|
|
604
610
|
return parseFlowScalar(tokens)(empty());
|
|
605
611
|
case 4:
|
|
606
|
-
return [
|
|
612
|
+
return [YAMLElement.Nil, tokens];
|
|
607
613
|
default:
|
|
608
614
|
return toFail(printf("Unexpected flow token: %A"))(tokens);
|
|
609
615
|
}
|
|
610
616
|
};
|
|
611
|
-
const tryCommentElementFromFlowString = (value_5) =>
|
|
617
|
+
const tryCommentElementFromFlowString = (value_5) => {
|
|
618
|
+
const option_1 = Placeholder_tryParseComment(value_5);
|
|
619
|
+
if (option_1 != null) {
|
|
620
|
+
return YAMLElement_Comment$(getItemFromDict(commentDict, value(option_1)));
|
|
621
|
+
} else {
|
|
622
|
+
return void 0;
|
|
623
|
+
}
|
|
624
|
+
};
|
|
612
625
|
const parseFlowScalar = (tokens_1) => (acc_2) => {
|
|
613
|
-
let matchResult_7, rest_10, value_7, rest_11, value_8, rest_12;
|
|
626
|
+
let matchResult_7 = void 0, rest_10 = void 0, value_7 = void 0, rest_11 = void 0, value_8 = void 0, rest_12 = void 0;
|
|
614
627
|
if (!isEmpty(tokens_1)) {
|
|
615
628
|
switch (head(tokens_1).tag) {
|
|
616
629
|
case /* String */
|
|
@@ -649,7 +662,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
649
662
|
return parseFlowScalar(rest_12)(cons(":", acc_2));
|
|
650
663
|
default: {
|
|
651
664
|
const matchValue_13 = reverse(acc_2);
|
|
652
|
-
return isEmpty(matchValue_13) ? [
|
|
665
|
+
return isEmpty(matchValue_13) ? [YAMLElement.Nil, tokens_1] : [YAMLElement_Value(createScalarContent(join("", matchValue_13), void 0)), tokens_1];
|
|
653
666
|
}
|
|
654
667
|
}
|
|
655
668
|
};
|
|
@@ -658,7 +671,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
658
671
|
loop_1:
|
|
659
672
|
while (true) {
|
|
660
673
|
const remaining = remaining_mut, acc_3 = acc_3_mut;
|
|
661
|
-
let matchResult_8, rest_14, rest_15, rest_16, value_10, key, rest_17;
|
|
674
|
+
let matchResult_8 = void 0, rest_14 = void 0, rest_15 = void 0, rest_16 = void 0, value_10 = void 0, key = void 0, rest_17 = void 0;
|
|
662
675
|
if (!isEmpty(remaining)) {
|
|
663
676
|
switch (head(remaining).tag) {
|
|
664
677
|
case /* CloseBrace */
|
|
@@ -706,14 +719,14 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
706
719
|
}
|
|
707
720
|
switch (matchResult_8) {
|
|
708
721
|
case 0:
|
|
709
|
-
return [YAMLElement_Object(reverse(acc_3)), rest_14];
|
|
722
|
+
return [YAMLElement_Object$(reverse(acc_3)), rest_14];
|
|
710
723
|
case 1: {
|
|
711
724
|
remaining_mut = rest_15;
|
|
712
725
|
acc_3_mut = acc_3;
|
|
713
726
|
continue loop_1;
|
|
714
727
|
}
|
|
715
728
|
case 2:
|
|
716
|
-
return [YAMLElement_Object(reverse(acc_3)), remaining];
|
|
729
|
+
return [YAMLElement_Object$(reverse(acc_3)), remaining];
|
|
717
730
|
case 3: {
|
|
718
731
|
remaining_mut = rest_16;
|
|
719
732
|
acc_3_mut = cons(value(tryCommentElementFromFlowString(value_10)), acc_3);
|
|
@@ -726,8 +739,8 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
726
739
|
remaining_mut = patternInput_4[1];
|
|
727
740
|
acc_3_mut = cons(YAMLElement_Mapping(keyContent, value_11.tag === /* Object */
|
|
728
741
|
3 ? value_11 : value_11.tag === /* Sequence */
|
|
729
|
-
2 ? YAMLElement_Object(singleton$1(value_11)) : value_11.tag === /* Value */
|
|
730
|
-
1 ? YAMLElement_Object(singleton$1(value_11)) : value_11), acc_3);
|
|
742
|
+
2 ? YAMLElement_Object$(singleton$1(value_11)) : value_11.tag === /* Value */
|
|
743
|
+
1 ? YAMLElement_Object$(singleton$1(value_11)) : value_11), acc_3);
|
|
731
744
|
continue loop_1;
|
|
732
745
|
}
|
|
733
746
|
default:
|
|
@@ -743,7 +756,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
743
756
|
loop_2:
|
|
744
757
|
while (true) {
|
|
745
758
|
const remaining_1 = remaining_1_mut, acc_4 = acc_4_mut;
|
|
746
|
-
let matchResult_9, rest_19, rest_20, rest_21, value_13;
|
|
759
|
+
let matchResult_9 = void 0, rest_19 = void 0, rest_20 = void 0, rest_21 = void 0, value_13 = void 0;
|
|
747
760
|
if (!isEmpty(remaining_1)) {
|
|
748
761
|
switch (head(remaining_1).tag) {
|
|
749
762
|
case /* CloseBracket */
|
|
@@ -792,7 +805,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
792
805
|
return [YAMLElement_Sequence(reverse(acc_4)), remaining_1];
|
|
793
806
|
case 3: {
|
|
794
807
|
remaining_1_mut = rest_21;
|
|
795
|
-
acc_4_mut = cons(YAMLElement_Object(singleton$1(value(tryCommentElementFromFlowString(value_13)))), acc_4);
|
|
808
|
+
acc_4_mut = cons(YAMLElement_Object$(singleton$1(value(tryCommentElementFromFlowString(value_13)))), acc_4);
|
|
796
809
|
continue loop_2;
|
|
797
810
|
}
|
|
798
811
|
default: {
|
|
@@ -800,8 +813,8 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
800
813
|
const item = patternInput_5[0];
|
|
801
814
|
remaining_1_mut = patternInput_5[1];
|
|
802
815
|
acc_4_mut = cons(item.tag === /* Value */
|
|
803
|
-
1 ? YAMLElement_Object(singleton$1(item)) : item.tag === /* Sequence */
|
|
804
|
-
2 ? YAMLElement_Object(singleton$1(item)) : item, acc_4);
|
|
816
|
+
1 ? YAMLElement_Object$(singleton$1(item)) : item.tag === /* Sequence */
|
|
817
|
+
2 ? YAMLElement_Object$(singleton$1(item)) : item, acc_4);
|
|
805
818
|
continue loop_2;
|
|
806
819
|
}
|
|
807
820
|
}
|
|
@@ -812,8 +825,8 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
812
825
|
};
|
|
813
826
|
const parseFlowSource = (source) => parseFlowNode(FlowTokens_tokenize(source))[0];
|
|
814
827
|
const prependRootFlow = (comment_4, node_2, acc_5) => append(reverse(toList(delay(() => {
|
|
815
|
-
let matchValue_19;
|
|
816
|
-
return append$1((matchValue_19 = comment_4, matchValue_19 == null ? empty$1() : singleton(YAMLElement_Comment(value(matchValue_19)))), delay(() => {
|
|
828
|
+
let matchValue_19 = void 0;
|
|
829
|
+
return append$1((matchValue_19 = comment_4, matchValue_19 == null ? empty$1() : singleton(YAMLElement_Comment$(value(matchValue_19)))), delay(() => {
|
|
817
830
|
const matchValue_20 = node_2;
|
|
818
831
|
switch (matchValue_20.tag) {
|
|
819
832
|
case /* Object */
|
|
@@ -829,11 +842,11 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
829
842
|
}));
|
|
830
843
|
}))), acc_5);
|
|
831
844
|
const loopRead = (handles_3_mut, restlist_mut, acc_6_mut) => {
|
|
832
|
-
let c2_2, c1_2, c1_1, c2_1, s_3, s_4, matchValue_30, content_4, continuations, matchValue_36, single, v_25, block_5, block_2, iList_2, closer_2, yamlAstList_1, v_4;
|
|
833
845
|
loopRead:
|
|
834
846
|
while (true) {
|
|
835
847
|
const handles_3 = handles_3_mut, restlist = restlist_mut, acc_6 = acc_6_mut;
|
|
836
|
-
let
|
|
848
|
+
let c2_2 = void 0, c1_2 = void 0, c1_1 = void 0, c2_1 = void 0, s_3 = void 0, s_4 = void 0, matchValue_30 = void 0, content_4 = void 0, continuations = void 0, matchValue_36 = void 0, single = void 0, v_25 = void 0, v_4 = void 0;
|
|
849
|
+
let matchResult_10 = void 0, alias = void 0, rest_25 = void 0;
|
|
837
850
|
if (!isEmpty(restlist)) {
|
|
838
851
|
const activePatternResult_8 = $007CAliasNode$007C_$007C(head(restlist));
|
|
839
852
|
if (activePatternResult_8 != null) {
|
|
@@ -856,9 +869,9 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
856
869
|
continue loopRead;
|
|
857
870
|
}
|
|
858
871
|
case 1:
|
|
859
|
-
return YAMLElement_Object(reverse(acc_6));
|
|
872
|
+
return YAMLElement_Object$(reverse(acc_6));
|
|
860
873
|
default: {
|
|
861
|
-
let matchResult_11, rest0, v_3, yamlAstList;
|
|
874
|
+
let matchResult_11 = void 0, rest0 = void 0, v_3 = void 0, yamlAstList = void 0;
|
|
862
875
|
if (!isEmpty(restlist)) {
|
|
863
876
|
const activePatternResult_10 = $007CSchemaNamespace$007C_$007C(head(restlist));
|
|
864
877
|
if (activePatternResult_10 != null) {
|
|
@@ -886,11 +899,11 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
886
899
|
const sequenceElements = collectSequenceElements(toList(takeWhile(isSequenceElement, rest0)));
|
|
887
900
|
handles_3_mut = handles_3;
|
|
888
901
|
restlist_mut = toList(skipWhile(isSequenceElement, rest0));
|
|
889
|
-
acc_6_mut = cons(YAMLElement_Sequence(toList(delay(() => append$1(singleton(loopRead(handles_3, cons(PreprocessorElement_Line(v_3.Key), yamlAstList), empty())), delay(() => map$
|
|
902
|
+
acc_6_mut = cons(YAMLElement_Sequence(toList(delay(() => append$1(singleton(loopRead(handles_3, cons(PreprocessorElement_Line(v_3.Key), yamlAstList), empty())), delay(() => map$1((i) => loopRead(handles_3, i, empty()), sequenceElements)))))), acc_6);
|
|
890
903
|
continue loopRead;
|
|
891
904
|
}
|
|
892
905
|
default: {
|
|
893
|
-
let matchResult_12, rest0_2, v_5, rest0_3, v_6, yamlAstList_2;
|
|
906
|
+
let matchResult_12 = void 0, rest0_2 = void 0, v_5 = void 0, rest0_3 = void 0, v_6 = void 0, yamlAstList_2 = void 0;
|
|
894
907
|
if (!isEmpty(restlist)) {
|
|
895
908
|
const activePatternResult_11 = $007CSchemaNamespace$007C_$007C(head(restlist));
|
|
896
909
|
if (activePatternResult_11 != null) {
|
|
@@ -903,7 +916,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
903
916
|
if (!isEmpty(tail(restlist))) {
|
|
904
917
|
if (head(tail(restlist)).tag === /* Intendation */
|
|
905
918
|
1) {
|
|
906
|
-
if (
|
|
919
|
+
if (head(tail(restlist)).fields[0], v_4 = value(activePatternResult_12), v_4.Value != null && isBlockScalarHeaderCandidate(value(v_4.Value))) {
|
|
907
920
|
matchResult_12 = 1;
|
|
908
921
|
rest0_3 = tail(tail(restlist));
|
|
909
922
|
v_6 = value(activePatternResult_12);
|
|
@@ -929,7 +942,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
929
942
|
const sequenceElements_1 = collectSequenceElements(toList(takeWhile(isSequenceElement, rest0_2)));
|
|
930
943
|
handles_3_mut = handles_3;
|
|
931
944
|
restlist_mut = toList(skipWhile(isSequenceElement, rest0_2));
|
|
932
|
-
acc_6_mut = cons(YAMLElement_Sequence(toList(delay(() => append$1(singleton(loopRead(handles_3, singleton$1(PreprocessorElement_Line(v_5.Key)), empty())), delay(() => map$
|
|
945
|
+
acc_6_mut = cons(YAMLElement_Sequence(toList(delay(() => append$1(singleton(loopRead(handles_3, singleton$1(PreprocessorElement_Line(v_5.Key)), empty())), delay(() => map$1((i_1) => loopRead(handles_3, i_1, empty()), sequenceElements_1)))))), acc_6);
|
|
933
946
|
continue loopRead;
|
|
934
947
|
}
|
|
935
948
|
case 1: {
|
|
@@ -941,15 +954,15 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
941
954
|
const blockScalar = value(matchValue_21);
|
|
942
955
|
const sequenceElements_2 = collectSequenceElements(toList(takeWhile(isSequenceElement, rest0_3)));
|
|
943
956
|
const rest_28 = toList(skipWhile(isSequenceElement, rest0_3));
|
|
944
|
-
const firstItem = YAMLElement_Object(singleton$1(YAMLElement_Value(YAMLContent_create_Z1C3A29C9(blockScalar.Value, unwrap(blockScalar.Comment), unwrap(blockScalar.Props.Anchor), unwrap(blockScalar.Props.Tag), ScalarStyle_Block(blockScalar.Style, blockScalar.Chomp, blockScalar.Indent)))));
|
|
957
|
+
const firstItem = YAMLElement_Object$(singleton$1(YAMLElement_Value(YAMLContent_create_Z1C3A29C9(blockScalar.Value, unwrap(blockScalar.Comment), unwrap(blockScalar.Props.Anchor), unwrap(blockScalar.Props.Tag), ScalarStyle_Block(blockScalar.Style, blockScalar.Chomp, blockScalar.Indent)))));
|
|
945
958
|
handles_3_mut = handles_3;
|
|
946
959
|
restlist_mut = rest_28;
|
|
947
|
-
acc_6_mut = cons(YAMLElement_Sequence(toList(delay(() => append$1(singleton(firstItem), delay(() => map$
|
|
960
|
+
acc_6_mut = cons(YAMLElement_Sequence(toList(delay(() => append$1(singleton(firstItem), delay(() => map$1((i_2) => loopRead(handles_3, i_2, empty()), sequenceElements_2)))))), acc_6);
|
|
948
961
|
continue loopRead;
|
|
949
962
|
}
|
|
950
963
|
}
|
|
951
964
|
default: {
|
|
952
|
-
let matchResult_13, rest0_4, v_7, yamlAstList_3;
|
|
965
|
+
let matchResult_13 = void 0, rest0_4 = void 0, v_7 = void 0, yamlAstList_3 = void 0;
|
|
953
966
|
if (!isEmpty(restlist)) {
|
|
954
967
|
const activePatternResult_13 = $007CSequenceMinusOpener$007C_$007C(head(restlist));
|
|
955
968
|
if (activePatternResult_13 != null) {
|
|
@@ -975,14 +988,16 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
975
988
|
switch (matchResult_13) {
|
|
976
989
|
case 0: {
|
|
977
990
|
let firstItem_1;
|
|
978
|
-
|
|
991
|
+
let matchValue_22;
|
|
992
|
+
const option_9 = v_7.Value;
|
|
993
|
+
if (option_9 != null) {
|
|
979
994
|
let matchValue_15;
|
|
980
|
-
const patternInput_7 = Placeholder_splitTrailingComment(
|
|
995
|
+
const patternInput_7 = Placeholder_splitTrailingComment(value(option_9));
|
|
981
996
|
const commentId_1 = patternInput_7[1];
|
|
982
997
|
const matchValue_14 = patternInput_7[0].trim();
|
|
983
998
|
matchValue_15 = matchValue_14 === "[" ? ["[", "]", commentId_1] : matchValue_14 === "{" ? ["{", "}", commentId_1] : void 0;
|
|
984
999
|
if (matchValue_15 == null) {
|
|
985
|
-
|
|
1000
|
+
matchValue_22 = void 0;
|
|
986
1001
|
} else {
|
|
987
1002
|
const opening = value(matchValue_15)[0];
|
|
988
1003
|
const openerCommentId = value(matchValue_15)[2];
|
|
@@ -1013,38 +1028,40 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1013
1028
|
};
|
|
1014
1029
|
matchValue_16 = loop_3(empty(), reverse(flattenFlowContent(yamlAstList_3)));
|
|
1015
1030
|
if (matchValue_16 == null) {
|
|
1016
|
-
|
|
1031
|
+
matchValue_22 = void 0;
|
|
1017
1032
|
} else {
|
|
1018
1033
|
const closerCommentId = value(matchValue_16)[1];
|
|
1019
|
-
|
|
1034
|
+
matchValue_22 = [parseFlowSource(join("\n", cons(opening, value(matchValue_16)[0]))), openerCommentId, closerCommentId];
|
|
1020
1035
|
}
|
|
1021
1036
|
}
|
|
1022
|
-
}
|
|
1037
|
+
} else {
|
|
1038
|
+
matchValue_22 = void 0;
|
|
1039
|
+
}
|
|
1023
1040
|
if (matchValue_22 == null) {
|
|
1024
1041
|
const parsedFirstItem = loopRead(handles_3, v_7.Value != null ? cons(PreprocessorElement_Line(value(v_7.Value)), yamlAstList_3) : yamlAstList_3, empty());
|
|
1025
1042
|
const matchValue_23 = tryCollapsePlainScalarContent(v_7.Value != null, yamlAstList_3, parsedFirstItem);
|
|
1026
|
-
firstItem_1 = matchValue_23 == null ? parsedFirstItem : YAMLElement_Object(singleton$1(YAMLElement_Value(value(matchValue_23))));
|
|
1043
|
+
firstItem_1 = matchValue_23 == null ? parsedFirstItem : YAMLElement_Object$(singleton$1(YAMLElement_Value(value(matchValue_23))));
|
|
1027
1044
|
} else {
|
|
1028
1045
|
const closerCommentId_1 = value(matchValue_22)[2];
|
|
1029
1046
|
const node_1 = value(matchValue_22)[0];
|
|
1030
1047
|
let commentsBefore;
|
|
1031
1048
|
const matchValue_17 = restoreCommentReplace(commentDict, value(matchValue_22)[1]);
|
|
1032
|
-
commentsBefore = matchValue_17 == null ? empty() : singleton$1(YAMLElement_Comment(value(matchValue_17)));
|
|
1049
|
+
commentsBefore = matchValue_17 == null ? empty() : singleton$1(YAMLElement_Comment$(value(matchValue_17)));
|
|
1033
1050
|
let commentsAfter;
|
|
1034
1051
|
const matchValue_18 = restoreCommentReplace(commentDict, closerCommentId_1);
|
|
1035
|
-
commentsAfter = matchValue_18 == null ? empty() : singleton$1(YAMLElement_Comment(value(matchValue_18)));
|
|
1052
|
+
commentsAfter = matchValue_18 == null ? empty() : singleton$1(YAMLElement_Comment$(value(matchValue_18)));
|
|
1036
1053
|
firstItem_1 = node_1.tag === /* Object */
|
|
1037
|
-
3 ? YAMLElement_Object(append(commentsBefore, append(node_1.fields[0], commentsAfter))) : node_1.tag === /* Nil */
|
|
1038
|
-
8 ? YAMLElement_Object(append(commentsBefore, commentsAfter)) : YAMLElement_Object(append(commentsBefore, append(singleton$1(node_1), commentsAfter)));
|
|
1054
|
+
3 ? YAMLElement_Object$(append(commentsBefore, append(node_1.fields[0], commentsAfter))) : node_1.tag === /* Nil */
|
|
1055
|
+
8 ? YAMLElement_Object$(append(commentsBefore, commentsAfter)) : YAMLElement_Object$(append(commentsBefore, append(singleton$1(node_1), commentsAfter)));
|
|
1039
1056
|
}
|
|
1040
1057
|
const sequenceElements_3 = collectSequenceElements(toList(takeWhile(isSequenceElement, rest0_4)));
|
|
1041
1058
|
handles_3_mut = handles_3;
|
|
1042
1059
|
restlist_mut = toList(skipWhile(isSequenceElement, rest0_4));
|
|
1043
|
-
acc_6_mut = cons(YAMLElement_Sequence(toList(delay(() => append$1(singleton(firstItem_1), delay(() => map$
|
|
1060
|
+
acc_6_mut = cons(YAMLElement_Sequence(toList(delay(() => append$1(singleton(firstItem_1), delay(() => map$1((i_3) => loopRead(handles_3, i_3, empty()), sequenceElements_3)))))), acc_6);
|
|
1044
1061
|
continue loopRead;
|
|
1045
1062
|
}
|
|
1046
1063
|
default: {
|
|
1047
|
-
let matchResult_14, rest0_5, v_8, rest_31, v_9, closer, iList, opener, rest_32;
|
|
1064
|
+
let matchResult_14 = void 0, rest0_5 = void 0, v_8 = void 0, rest_31 = void 0, v_9 = void 0, closer = void 0, iList = void 0, opener = void 0, rest_32 = void 0;
|
|
1048
1065
|
if (!isEmpty(restlist)) {
|
|
1049
1066
|
const activePatternResult_14 = $007CSequenceMinusOpener$007C_$007C(head(restlist));
|
|
1050
1067
|
if (activePatternResult_14 != null) {
|
|
@@ -1106,7 +1123,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1106
1123
|
const sequenceElements_4 = collectSequenceElements(toList(takeWhile(isSequenceElement, sequenceSource)));
|
|
1107
1124
|
handles_3_mut = handles_3;
|
|
1108
1125
|
restlist_mut = toList(skipWhile(isSequenceElement, sequenceSource));
|
|
1109
|
-
acc_6_mut = cons(YAMLElement_Sequence(toList(delay(() => append$1(singleton(loopRead(handles_3, patternInput_9[0], empty())), delay(() => map$
|
|
1126
|
+
acc_6_mut = cons(YAMLElement_Sequence(toList(delay(() => append$1(singleton(loopRead(handles_3, patternInput_9[0], empty())), delay(() => map$1((i_4) => loopRead(handles_3, i_4, empty()), sequenceElements_4)))))), acc_6);
|
|
1110
1127
|
continue loopRead;
|
|
1111
1128
|
}
|
|
1112
1129
|
case 1: {
|
|
@@ -1121,11 +1138,11 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1121
1138
|
const current_7 = parseFlowSource("[" + join("\n", flattenFlowContent(iList)) + "]");
|
|
1122
1139
|
handles_3_mut = handles_3;
|
|
1123
1140
|
restlist_mut = rest_32;
|
|
1124
|
-
acc_6_mut = c1 == null ? c2 == null ? cons(current_7, acc_6) : (c2_2 = value(c2), ofArrayWithTail([YAMLElement_Comment(c2_2), current_7], acc_6)) : c2 == null ? (c1_2 = value(c1), ofArrayWithTail([current_7, YAMLElement_Comment(c1_2)], acc_6)) : (c1_1 = value(c1), c2_1 = value(c2), ofArrayWithTail([YAMLElement_Comment(c2_1), current_7, YAMLElement_Comment(c1_1)], acc_6));
|
|
1141
|
+
acc_6_mut = c1 == null ? c2 == null ? cons(current_7, acc_6) : (c2_2 = value(c2), ofArrayWithTail([YAMLElement_Comment$(c2_2), current_7], acc_6)) : c2 == null ? (c1_2 = value(c1), ofArrayWithTail([current_7, YAMLElement_Comment$(c1_2)], acc_6)) : (c1_1 = value(c1), c2_1 = value(c2), ofArrayWithTail([YAMLElement_Comment$(c2_1), current_7, YAMLElement_Comment$(c1_1)], acc_6));
|
|
1125
1142
|
continue loopRead;
|
|
1126
1143
|
}
|
|
1127
1144
|
default: {
|
|
1128
|
-
let matchResult_15, rest_33, v_10, closer_1, iList_1, opener_1, rest_34;
|
|
1145
|
+
let matchResult_15 = void 0, rest_33 = void 0, v_10 = void 0, closer_1 = void 0, iList_1 = void 0, opener_1 = void 0, rest_34 = void 0;
|
|
1129
1146
|
if (!isEmpty(restlist)) {
|
|
1130
1147
|
const activePatternResult_18 = $007CInlineJSON$007C_$007C(head(restlist));
|
|
1131
1148
|
if (activePatternResult_18 != null) {
|
|
@@ -1178,11 +1195,11 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1178
1195
|
const current_9 = YAMLElement_Mapping(createScalarContent(opener_1.Key, keyComment), parseFlowSource("{" + join("\n", flattenFlowContent(iList_1)) + "}"));
|
|
1179
1196
|
handles_3_mut = handles_3;
|
|
1180
1197
|
restlist_mut = rest_34;
|
|
1181
|
-
acc_6_mut = closerComment == null ? cons(current_9, acc_6) : ofArrayWithTail([YAMLElement_Comment(value(closerComment)), current_9], acc_6);
|
|
1198
|
+
acc_6_mut = closerComment == null ? cons(current_9, acc_6) : ofArrayWithTail([YAMLElement_Comment$(value(closerComment)), current_9], acc_6);
|
|
1182
1199
|
continue loopRead;
|
|
1183
1200
|
}
|
|
1184
1201
|
default: {
|
|
1185
|
-
let matchResult_16, closer_3, iList_3, opener_3, rest_36;
|
|
1202
|
+
let matchResult_16 = void 0, closer_3 = void 0, iList_3 = void 0, opener_3 = void 0, rest_36 = void 0;
|
|
1186
1203
|
if (!isEmpty(restlist)) {
|
|
1187
1204
|
const activePatternResult_21 = $007CYamlValue$007C_$007C(head(restlist));
|
|
1188
1205
|
if (activePatternResult_21 != null) {
|
|
@@ -1192,7 +1209,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1192
1209
|
if (!isEmpty(tail(tail(restlist)))) {
|
|
1193
1210
|
const activePatternResult_22 = $007CJSONCloser$007C_$007C(head(tail(tail(restlist))));
|
|
1194
1211
|
if (activePatternResult_22 != null) {
|
|
1195
|
-
if (
|
|
1212
|
+
if (head(tail(restlist)).fields[0], value(activePatternResult_22), value(activePatternResult_21).Value === "{") {
|
|
1196
1213
|
matchResult_16 = 0;
|
|
1197
1214
|
closer_3 = value(activePatternResult_22);
|
|
1198
1215
|
iList_3 = head(tail(restlist)).fields[0];
|
|
@@ -1227,9 +1244,9 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1227
1244
|
handles_3_mut = handles_3;
|
|
1228
1245
|
restlist_mut = rest_36;
|
|
1229
1246
|
acc_6_mut = append(reverse(toList(delay(() => {
|
|
1230
|
-
let matchValue_26;
|
|
1231
|
-
return append$1((matchValue_26 = c1_3, matchValue_26 == null ? empty$1() : singleton(YAMLElement_Comment(value(matchValue_26)))), delay(() => {
|
|
1232
|
-
let matchValue_27;
|
|
1247
|
+
let matchValue_26 = void 0;
|
|
1248
|
+
return append$1((matchValue_26 = c1_3, matchValue_26 == null ? empty$1() : singleton(YAMLElement_Comment$(value(matchValue_26)))), delay(() => {
|
|
1249
|
+
let matchValue_27 = void 0;
|
|
1233
1250
|
return append$1((matchValue_27 = current_10, matchValue_27.tag === /* Object */
|
|
1234
1251
|
3 ? matchValue_27.fields[0] : matchValue_27.tag === /* Nil */
|
|
1235
1252
|
8 ? empty$1() : singleton(matchValue_27)), delay(() => {
|
|
@@ -1237,7 +1254,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1237
1254
|
if (matchValue_28 == null) {
|
|
1238
1255
|
return empty$1();
|
|
1239
1256
|
} else {
|
|
1240
|
-
return singleton(YAMLElement_Comment(value(matchValue_28)));
|
|
1257
|
+
return singleton(YAMLElement_Comment$(value(matchValue_28)));
|
|
1241
1258
|
}
|
|
1242
1259
|
}));
|
|
1243
1260
|
}));
|
|
@@ -1245,7 +1262,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1245
1262
|
continue loopRead;
|
|
1246
1263
|
}
|
|
1247
1264
|
default: {
|
|
1248
|
-
let matchResult_17, k, rest_37, rest_38, v_15, yamlAstList_4;
|
|
1265
|
+
let matchResult_17 = void 0, k = void 0, rest_37 = void 0, rest_38 = void 0, v_15 = void 0, yamlAstList_4 = void 0;
|
|
1249
1266
|
if (!isEmpty(restlist)) {
|
|
1250
1267
|
const activePatternResult_23 = $007CExplicitKey$007C_$007C(head(restlist));
|
|
1251
1268
|
if (activePatternResult_23 != null) {
|
|
@@ -1278,11 +1295,11 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1278
1295
|
switch (matchResult_17) {
|
|
1279
1296
|
case 0: {
|
|
1280
1297
|
const parseValue = (vStr) => {
|
|
1281
|
-
let matchValue_29;
|
|
1298
|
+
let matchValue_29 = void 0;
|
|
1282
1299
|
return loopRead(handles_3, (matchValue_29 = read$1(vStr).AST, matchValue_29.tag === /* Level */
|
|
1283
1300
|
0 ? matchValue_29.fields[0] : empty()), empty());
|
|
1284
1301
|
};
|
|
1285
|
-
let matchResult_18, iList_4, keyBody, tail_2, v_11;
|
|
1302
|
+
let matchResult_18 = void 0, iList_4 = void 0, keyBody = void 0, tail_2 = void 0, v_11 = void 0;
|
|
1286
1303
|
if (!isEmpty(rest_37)) {
|
|
1287
1304
|
if (head(rest_37).tag === /* Intendation */
|
|
1288
1305
|
1) {
|
|
@@ -1326,7 +1343,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1326
1343
|
continue loopRead;
|
|
1327
1344
|
}
|
|
1328
1345
|
default: {
|
|
1329
|
-
let matchResult_19, keyBody_1, tail_3, v_12, iList_5, tail_4, v_13;
|
|
1346
|
+
let matchResult_19 = void 0, keyBody_1 = void 0, tail_3 = void 0, v_12 = void 0, iList_5 = void 0, tail_4 = void 0, v_13 = void 0;
|
|
1330
1347
|
if (!isEmpty(rest_37)) {
|
|
1331
1348
|
if (head(rest_37).tag === /* Intendation */
|
|
1332
1349
|
1) {
|
|
@@ -1392,7 +1409,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1392
1409
|
continue loopRead;
|
|
1393
1410
|
}
|
|
1394
1411
|
default: {
|
|
1395
|
-
let matchResult_20, tail_5, v_14;
|
|
1412
|
+
let matchResult_20 = void 0, tail_5 = void 0, v_14 = void 0;
|
|
1396
1413
|
if (!isEmpty(rest_37)) {
|
|
1397
1414
|
const activePatternResult_29 = $007CExplicitValue$007C_$007C(head(rest_37));
|
|
1398
1415
|
if (activePatternResult_29 != null) {
|
|
@@ -1415,7 +1432,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1415
1432
|
default: {
|
|
1416
1433
|
handles_3_mut = handles_3;
|
|
1417
1434
|
restlist_mut = rest_37;
|
|
1418
|
-
acc_6_mut = cons(YAMLElement_Mapping(k == null ? YAMLContent_create_Z1C3A29C9("") : createScalarContent(value(k), void 0),
|
|
1435
|
+
acc_6_mut = cons(YAMLElement_Mapping(k == null ? YAMLContent_create_Z1C3A29C9("") : createScalarContent(value(k), void 0), YAMLElement.Nil), acc_6);
|
|
1419
1436
|
continue loopRead;
|
|
1420
1437
|
}
|
|
1421
1438
|
}
|
|
@@ -1429,11 +1446,11 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1429
1446
|
const parsedValue = loopRead(handles_3, yamlAstList_4, empty());
|
|
1430
1447
|
handles_3_mut = handles_3;
|
|
1431
1448
|
restlist_mut = rest_38;
|
|
1432
|
-
acc_6_mut = cons(YAMLElement_Mapping(keyContent_7, (matchValue_30 = tryCollapsePlainScalarContent(false, yamlAstList_4, parsedValue), matchValue_30 == null ? parsedValue : YAMLElement_Object(singleton$1(YAMLElement_Value(value(matchValue_30)))))), acc_6);
|
|
1449
|
+
acc_6_mut = cons(YAMLElement_Mapping(keyContent_7, (matchValue_30 = tryCollapsePlainScalarContent(false, yamlAstList_4, parsedValue), matchValue_30 == null ? parsedValue : YAMLElement_Object$(singleton$1(YAMLElement_Value(value(matchValue_30)))))), acc_6);
|
|
1433
1450
|
continue loopRead;
|
|
1434
1451
|
}
|
|
1435
1452
|
default: {
|
|
1436
|
-
let matchResult_21, rest0_6, v_17, block_3, rest_42, v_18;
|
|
1453
|
+
let matchResult_21 = void 0, rest0_6 = void 0, v_17 = void 0, block_3 = void 0, rest_42 = void 0, v_18 = void 0;
|
|
1437
1454
|
if (!isEmpty(restlist)) {
|
|
1438
1455
|
const activePatternResult_30 = $007CKey$007C_$007C(head(restlist));
|
|
1439
1456
|
if (activePatternResult_30 != null) {
|
|
@@ -1446,7 +1463,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1446
1463
|
if (!isEmpty(tail(restlist))) {
|
|
1447
1464
|
if (head(tail(restlist)).tag === /* Intendation */
|
|
1448
1465
|
1) {
|
|
1449
|
-
if (
|
|
1466
|
+
if (head(tail(restlist)).fields[0], isBlockScalarHeaderCandidate(value(activePatternResult_31).Value)) {
|
|
1450
1467
|
matchResult_21 = 1;
|
|
1451
1468
|
block_3 = head(tail(restlist)).fields[0];
|
|
1452
1469
|
rest_42 = tail(tail(restlist));
|
|
@@ -1472,7 +1489,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1472
1489
|
const patternInput_10 = takeLeadingComments(rest0_6);
|
|
1473
1490
|
const leadingComments = patternInput_10[0];
|
|
1474
1491
|
const afterComments = patternInput_10[1];
|
|
1475
|
-
let matchResult_22, tail_6, w, yamlAstList_5;
|
|
1492
|
+
let matchResult_22 = void 0, tail_6 = void 0, w = void 0, yamlAstList_5 = void 0;
|
|
1476
1493
|
if (!isEmpty(afterComments)) {
|
|
1477
1494
|
const activePatternResult_32 = $007CSequenceMinusOpener$007C_$007C(head(afterComments));
|
|
1478
1495
|
if (activePatternResult_32 != null) {
|
|
@@ -1501,14 +1518,14 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1501
1518
|
const objectList_3 = w.Value != null ? cons(PreprocessorElement_Line(value(w.Value)), yamlAstList_5) : yamlAstList_5;
|
|
1502
1519
|
const sequenceElements_5 = collectSequenceElements(toList(takeWhile(isSequenceElement, tail_6)));
|
|
1503
1520
|
const rest_40 = toList(skipWhile(isSequenceElement, tail_6));
|
|
1504
|
-
const seq = YAMLElement_Sequence(toList(delay(() => append$1(singleton(loopRead(handles_3, objectList_3, empty())), delay(() => map$
|
|
1521
|
+
const seq = YAMLElement_Sequence(toList(delay(() => append$1(singleton(loopRead(handles_3, objectList_3, empty())), delay(() => map$1((element_1) => loopRead(handles_3, element_1, empty()), sequenceElements_5))))));
|
|
1505
1522
|
handles_3_mut = handles_3;
|
|
1506
1523
|
restlist_mut = rest_40;
|
|
1507
|
-
acc_6_mut = cons(YAMLElement_Mapping(keyContent_8, YAMLElement_Object(append(commentTokensToYaml(leadingComments), singleton$1(seq)))), acc_6);
|
|
1524
|
+
acc_6_mut = cons(YAMLElement_Mapping(keyContent_8, YAMLElement_Object$(append(commentTokensToYaml(leadingComments), singleton$1(seq)))), acc_6);
|
|
1508
1525
|
continue loopRead;
|
|
1509
1526
|
}
|
|
1510
1527
|
default: {
|
|
1511
|
-
let matchResult_23, tail_7, w_1;
|
|
1528
|
+
let matchResult_23 = void 0, tail_7 = void 0, w_1 = void 0;
|
|
1512
1529
|
if (!isEmpty(afterComments)) {
|
|
1513
1530
|
const activePatternResult_33 = $007CSequenceMinusOpener$007C_$007C(head(afterComments));
|
|
1514
1531
|
if (activePatternResult_33 != null) {
|
|
@@ -1538,10 +1555,10 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1538
1555
|
const sequenceSource_1 = patternInput_11[1];
|
|
1539
1556
|
const sequenceElements_6 = collectSequenceElements(toList(takeWhile(isSequenceElement, sequenceSource_1)));
|
|
1540
1557
|
const rest_41 = toList(skipWhile(isSequenceElement, sequenceSource_1));
|
|
1541
|
-
const seq_1 = YAMLElement_Sequence(toList(delay(() => append$1(singleton(loopRead(handles_3, patternInput_11[0], empty())), delay(() => map$
|
|
1558
|
+
const seq_1 = YAMLElement_Sequence(toList(delay(() => append$1(singleton(loopRead(handles_3, patternInput_11[0], empty())), delay(() => map$1((element_2) => loopRead(handles_3, element_2, empty()), sequenceElements_6))))));
|
|
1542
1559
|
handles_3_mut = handles_3;
|
|
1543
1560
|
restlist_mut = rest_41;
|
|
1544
|
-
acc_6_mut = cons(YAMLElement_Mapping(keyContent_9, YAMLElement_Object(append(commentTokensToYaml(leadingComments), singleton$1(seq_1)))), acc_6);
|
|
1561
|
+
acc_6_mut = cons(YAMLElement_Mapping(keyContent_9, YAMLElement_Object$(append(commentTokensToYaml(leadingComments), singleton$1(seq_1)))), acc_6);
|
|
1545
1562
|
continue loopRead;
|
|
1546
1563
|
}
|
|
1547
1564
|
default: {
|
|
@@ -1568,7 +1585,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1568
1585
|
}
|
|
1569
1586
|
}
|
|
1570
1587
|
default: {
|
|
1571
|
-
let matchResult_24, block_4, rest_43, v_19;
|
|
1588
|
+
let matchResult_24 = void 0, block_4 = void 0, rest_43 = void 0, v_19 = void 0;
|
|
1572
1589
|
if (!isEmpty(restlist)) {
|
|
1573
1590
|
const activePatternResult_34 = $007CKeyValue$007C_$007C(head(restlist));
|
|
1574
1591
|
if (activePatternResult_34 != null) {
|
|
@@ -1602,7 +1619,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1602
1619
|
} else {
|
|
1603
1620
|
const content_7 = value(matchValue_34);
|
|
1604
1621
|
const patternInput_12 = takePlainScalarContinuationContents(rest_43, empty());
|
|
1605
|
-
patternInput_13 = [YAMLElement_Object(singleton$1(YAMLElement_Value((content_4 = content_7, continuations = patternInput_12[0], isEmpty(continuations) ? content_4 : new YAMLContent(join("\n", map
|
|
1622
|
+
patternInput_13 = [YAMLElement_Object$(singleton$1(YAMLElement_Value((content_4 = content_7, continuations = patternInput_12[0], isEmpty(continuations) ? content_4 : new YAMLContent(join("\n", map((segment_1) => segment_1.Value, cons(content_4, continuations))), content_4.Comment, content_4.Anchor, content_4.Tag, ScalarStyle.Plain))))), patternInput_12[1]];
|
|
1606
1623
|
}
|
|
1607
1624
|
handles_3_mut = handles_3;
|
|
1608
1625
|
restlist_mut = patternInput_13[1];
|
|
@@ -1610,7 +1627,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1610
1627
|
continue loopRead;
|
|
1611
1628
|
}
|
|
1612
1629
|
default: {
|
|
1613
|
-
let matchResult_25, rest_45, v_21, rest_46, v_22, block_6, rest_47, v_23;
|
|
1630
|
+
let matchResult_25 = void 0, rest_45 = void 0, v_21 = void 0, rest_46 = void 0, v_22 = void 0, block_6 = void 0, rest_47 = void 0, v_23 = void 0;
|
|
1614
1631
|
if (!isEmpty(restlist)) {
|
|
1615
1632
|
const activePatternResult_35 = $007CKeyValue$007C_$007C(head(restlist));
|
|
1616
1633
|
if (activePatternResult_35 != null) {
|
|
@@ -1629,7 +1646,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1629
1646
|
if (!isEmpty(tail(restlist))) {
|
|
1630
1647
|
if (head(tail(restlist)).tag === /* Intendation */
|
|
1631
1648
|
1) {
|
|
1632
|
-
if (
|
|
1649
|
+
if (head(tail(restlist)).fields[0], isBlockScalarHeaderCandidate(value(activePatternResult_37).Value)) {
|
|
1633
1650
|
matchResult_25 = 2;
|
|
1634
1651
|
block_6 = head(tail(restlist)).fields[0];
|
|
1635
1652
|
rest_47 = tail(tail(restlist));
|
|
@@ -1661,7 +1678,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1661
1678
|
case 1: {
|
|
1662
1679
|
handles_3_mut = handles_3;
|
|
1663
1680
|
restlist_mut = rest_46;
|
|
1664
|
-
acc_6_mut = cons(YAMLElement_Comment(getItemFromDict(commentDict, v_22.Comment)), acc_6);
|
|
1681
|
+
acc_6_mut = cons(YAMLElement_Comment$(getItemFromDict(commentDict, v_22.Comment)), acc_6);
|
|
1665
1682
|
continue loopRead;
|
|
1666
1683
|
}
|
|
1667
1684
|
case 2: {
|
|
@@ -1677,7 +1694,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1677
1694
|
}
|
|
1678
1695
|
}
|
|
1679
1696
|
default: {
|
|
1680
|
-
let matchResult_26, block_7, rest_48, v_24;
|
|
1697
|
+
let matchResult_26 = void 0, block_7 = void 0, rest_48 = void 0, v_24 = void 0;
|
|
1681
1698
|
if (!isEmpty(restlist)) {
|
|
1682
1699
|
const activePatternResult_38 = $007CYamlValue$007C_$007C(head(restlist));
|
|
1683
1700
|
if (activePatternResult_38 != null) {
|
|
@@ -1710,7 +1727,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1710
1727
|
continue loopRead;
|
|
1711
1728
|
}
|
|
1712
1729
|
default: {
|
|
1713
|
-
let matchResult_27, rest_50, v_26;
|
|
1730
|
+
let matchResult_27 = void 0, rest_50 = void 0, v_26 = void 0;
|
|
1714
1731
|
if (!isEmpty(restlist)) {
|
|
1715
1732
|
const activePatternResult_39 = $007CYamlValue$007C_$007C(head(restlist));
|
|
1716
1733
|
if (activePatternResult_39 != null) {
|
|
@@ -1736,7 +1753,7 @@ function tokenize(yamlList, stringDict, commentDict, handles) {
|
|
|
1736
1753
|
}
|
|
1737
1754
|
default:
|
|
1738
1755
|
if (isEmpty(restlist)) {
|
|
1739
|
-
return YAMLElement_Object(reverse(acc_6));
|
|
1756
|
+
return YAMLElement_Object$(reverse(acc_6));
|
|
1740
1757
|
} else {
|
|
1741
1758
|
const activePatternResult_40 = $007CYamlValue$007C_$007C(head(restlist));
|
|
1742
1759
|
if (activePatternResult_40 != null) {
|
|
@@ -1789,7 +1806,7 @@ function read(yaml) {
|
|
|
1789
1806
|
0) {
|
|
1790
1807
|
return tokenize(matchValue.fields[0], ast.StringMap, ast.CommentMap, ast.TagHandles);
|
|
1791
1808
|
} else {
|
|
1792
|
-
throw new
|
|
1809
|
+
throw new Exception("Not a root!");
|
|
1793
1810
|
}
|
|
1794
1811
|
}
|
|
1795
1812
|
function readDocuments(yaml) {
|
|
@@ -1801,10 +1818,10 @@ function readDocuments(yaml) {
|
|
|
1801
1818
|
}
|
|
1802
1819
|
};
|
|
1803
1820
|
const splitDocuments = (remaining_mut, currentDoc_1_mut, docs_1_mut, blockHeaderIndent_mut) => {
|
|
1804
|
-
let matchValue;
|
|
1805
1821
|
splitDocuments:
|
|
1806
1822
|
while (true) {
|
|
1807
1823
|
const remaining = remaining_mut, currentDoc_1 = currentDoc_1_mut, docs_1 = docs_1_mut, blockHeaderIndent = blockHeaderIndent_mut;
|
|
1824
|
+
let matchValue = void 0;
|
|
1808
1825
|
if (!isEmpty(remaining)) {
|
|
1809
1826
|
const rest = tail(remaining);
|
|
1810
1827
|
const line = head(remaining);
|
|
@@ -1861,7 +1878,7 @@ function readDocuments(yaml) {
|
|
|
1861
1878
|
break;
|
|
1862
1879
|
}
|
|
1863
1880
|
};
|
|
1864
|
-
return map
|
|
1881
|
+
return map((docLines) => read(join("\n", docLines)), filter((doc) => exists((l_1) => l_1.trim() !== "", doc), splitDocuments(ofArray(split(Line_normalizeNewlines(yaml), ["\n"], void 0, 0)), empty(), empty(), void 0)));
|
|
1865
1882
|
}
|
|
1866
1883
|
|
|
1867
1884
|
export { collectSequenceElements, isSequenceElement, read, readDocuments };
|