@loopstack/loopstack-studio 0.20.2 → 0.21.0-rc.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/_virtual/rolldown_runtime.js +20 -0
- package/dist/components/data-table/ConfirmDialog.js +30 -0
- package/dist/components/data-table/DataList.js +216 -0
- package/dist/components/data-table/DataTable.js +264 -0
- package/dist/components/data-table/DataTableBatchAction.js +32 -0
- package/dist/components/data-table/DataTableFilters.js +83 -0
- package/dist/components/data-table/DataTablePagination.js +108 -0
- package/dist/components/data-table/DataTableToolbar.js +70 -0
- package/dist/components/dynamic-form/ArrayController.js +100 -0
- package/dist/components/dynamic-form/CodeContent.js +174 -0
- package/dist/components/dynamic-form/Form.js +35 -0
- package/dist/components/dynamic-form/FormBody.js +26 -0
- package/dist/components/dynamic-form/FormElement.js +42 -0
- package/dist/components/dynamic-form/FormElementHeader.js +20 -0
- package/dist/components/dynamic-form/InputController.js +38 -0
- package/dist/components/dynamic-form/MarkdownContent.js +76 -0
- package/dist/components/dynamic-form/MermaidDiagram.js +41 -0
- package/dist/components/dynamic-form/ObjectController.js +32 -0
- package/dist/components/dynamic-form/fields/BaseFieldWrapper.js +47 -0
- package/dist/components/dynamic-form/fields/CheckboxField.js +53 -0
- package/dist/components/dynamic-form/fields/CodeViewField.js +63 -0
- package/dist/components/dynamic-form/fields/InputField.js +105 -0
- package/dist/components/dynamic-form/fields/RadioField.js +67 -0
- package/dist/components/dynamic-form/fields/SelectField.js +60 -0
- package/dist/components/dynamic-form/fields/SliderField.js +112 -0
- package/dist/components/dynamic-form/fields/SwitchField.js +66 -0
- package/dist/components/dynamic-form/fields/TextareaField.js +77 -0
- package/dist/components/dynamic-form/fields/utils/text-validation-utils.js +33 -0
- package/dist/components/dynamic-form/hooks/useArrayDefaultValue.js +42 -0
- package/dist/components/dynamic-form/hooks/useFieldConfig.js +21 -0
- package/dist/components/dynamic-form/hooks/useMergeParentKey.js +5 -0
- package/dist/components/dynamic-form/hooks/useSortPropertyNames.js +5 -0
- package/dist/components/layout/MainLayout.js +24 -0
- package/dist/components/lists/CustomListView.js +87 -0
- package/dist/components/lists/ListView.js +118 -0
- package/dist/components/page/PageBreadcrumbs.js +41 -0
- package/dist/components/snackbars/ErrorSnackbar.js +30 -0
- package/dist/components/snackbars/Snackbar.js +44 -0
- package/dist/components/ui/alert-dialog.js +121 -0
- package/dist/components/ui/badge.js +28 -0
- package/dist/components/ui/breadcrumb.js +85 -0
- package/dist/components/ui/button.js +47 -0
- package/dist/components/ui/card.js +29 -0
- package/dist/components/ui/checkbox.js +26 -0
- package/dist/components/ui/collapsible.js +32 -0
- package/dist/components/ui/dialog.js +88 -0
- package/dist/components/ui/input.js +18 -0
- package/dist/components/ui/label.js +19 -0
- package/dist/components/ui/radio-group.js +38 -0
- package/dist/components/ui/select.js +125 -0
- package/dist/components/ui/sheet.js +97 -0
- package/dist/components/ui/slider.js +35 -0
- package/dist/components/ui/switch.js +24 -0
- package/dist/components/ui/table.js +81 -0
- package/dist/components/ui/textarea.js +17 -0
- package/dist/components/ui/tooltip.js +50 -0
- package/dist/features/health/LocalHealthCheck.js +95 -0
- package/dist/features/workspaces/Workspaces.js +162 -0
- package/dist/features/workspaces/components/CreateWorkspace.js +128 -0
- package/dist/features/workspaces/components/ExecutionTimeline.js +204 -0
- package/dist/features/workspaces/components/NewPipelineRunDialog.js +31 -0
- package/dist/features/workspaces/components/PipelineForm.js +152 -0
- package/dist/features/workspaces/components/pipeline-form/ArgumentsView.js +75 -0
- package/dist/features/workspaces/components/pipeline-form/HeaderSection.js +43 -0
- package/dist/features/workspaces/components/pipeline-form/SelectionView.js +105 -0
- package/dist/hooks/use-mobile.js +3 -3
- package/dist/hooks/useAuth.js +56 -0
- package/dist/hooks/useConfig.js +46 -0
- package/dist/hooks/useDebounce.js +27 -0
- package/dist/hooks/usePipelines.js +117 -0
- package/dist/hooks/useProcessor.js +24 -0
- package/dist/hooks/useWorkspaces.js +142 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +4 -1
- package/dist/lib/utils.js +6 -0
- package/dist/loopstack-studio.css +2 -0
- package/dist/node_modules/@braintree/sanitize-url/dist/constants.js +6 -0
- package/dist/node_modules/@braintree/sanitize-url/dist/index.js +48 -0
- package/dist/node_modules/@chevrotain/gast/lib/src/helpers.js +26 -0
- package/dist/node_modules/@chevrotain/gast/lib/src/model.js +154 -0
- package/dist/node_modules/@chevrotain/gast/lib/src/visitor.js +40 -0
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/api.js +2 -0
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/base-regexp-visitor.js +85 -0
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/character-classes.js +35 -0
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/regexp-parser.js +570 -0
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/utils.js +25 -0
- package/dist/node_modules/@chevrotain/utils/lib/src/print.js +9 -0
- package/dist/node_modules/@chevrotain/utils/lib/src/timer.js +8 -0
- package/dist/node_modules/@chevrotain/utils/lib/src/to-fast-properties.js +10 -0
- package/dist/node_modules/@iconify/utils/lib/customisations/defaults.js +9 -0
- package/dist/node_modules/@iconify/utils/lib/icon/defaults.js +18 -0
- package/dist/node_modules/@iconify/utils/lib/icon/merge.js +8 -0
- package/dist/node_modules/@iconify/utils/lib/icon/name.js +35 -0
- package/dist/node_modules/@iconify/utils/lib/icon/transformations.js +7 -0
- package/dist/node_modules/@iconify/utils/lib/icon-set/get-icon.js +15 -0
- package/dist/node_modules/@iconify/utils/lib/icon-set/tree.js +14 -0
- package/dist/node_modules/@iconify/utils/lib/svg/build.js +54 -0
- package/dist/node_modules/@iconify/utils/lib/svg/defs.js +22 -0
- package/dist/node_modules/@iconify/utils/lib/svg/html.js +6 -0
- package/dist/node_modules/@iconify/utils/lib/svg/id.js +17 -0
- package/dist/node_modules/@iconify/utils/lib/svg/size.js +18 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/architecture-7HQA4BMR.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-4F5CHEZ2.js +23 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-B2363JML.js +60 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-FRFDVMJY.js +23 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-PL6DKKU2.js +28 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-SJTYNZTY.js +23 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TCCFYFTB.js +787 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TQ3KTPDO.js +23 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-UMXZTB3W.js +30 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/gitGraph-G5XIXVHT.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-VBDWY6EO.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-DYOGHKS2.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-VRWISCQL.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-ZZBFDIW7.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-GDKQZRPO.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/mermaid-parser.core.js +55 -0
- package/dist/node_modules/ccount/index.js +8 -0
- package/dist/node_modules/chevrotain/lib/src/api.js +10 -0
- package/dist/node_modules/chevrotain/lib/src/lang/lang_extensions.js +10 -0
- package/dist/node_modules/chevrotain/lib/src/parse/constants.js +2 -0
- package/dist/node_modules/chevrotain/lib/src/parse/cst/cst.js +13 -0
- package/dist/node_modules/chevrotain/lib/src/parse/cst/cst_visitor.js +58 -0
- package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +75 -0
- package/dist/node_modules/chevrotain/lib/src/parse/exceptions_public.js +34 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/checks.js +299 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/first.js +25 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/follow.js +29 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/gast/gast_resolver_public.js +15 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/interpreter.js +269 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/keys.js +5 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/llk_lookahead.js +43 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/lookahead.js +248 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/resolver.js +32 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/rest.js +58 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/parser.js +122 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/context_assist.js +16 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/error_handler.js +48 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/gast_recorder.js +172 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/lexer_adapter.js +39 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/looksahead.js +109 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/perf_tracer.js +22 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_api.js +313 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_engine.js +275 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recoverable.js +144 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/tree_builder.js +102 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/utils/apply_mixins.js +11 -0
- package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +465 -0
- package/dist/node_modules/chevrotain/lib/src/scan/lexer_errors_public.js +9 -0
- package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +275 -0
- package/dist/node_modules/chevrotain/lib/src/scan/reg_exp.js +152 -0
- package/dist/node_modules/chevrotain/lib/src/scan/reg_exp_parser.js +15 -0
- package/dist/node_modules/chevrotain/lib/src/scan/tokens.js +75 -0
- package/dist/node_modules/chevrotain/lib/src/scan/tokens_public.js +42 -0
- package/dist/node_modules/chevrotain-allstar/lib/all-star-lookahead.js +346 -0
- package/dist/node_modules/chevrotain-allstar/lib/atn.js +194 -0
- package/dist/node_modules/chevrotain-allstar/lib/dfa.js +32 -0
- package/dist/node_modules/chevrotain-allstar/lib/index.js +1 -0
- package/dist/node_modules/comma-separated-tokens/index.js +10 -0
- package/dist/node_modules/cose-base/cose-base.js +469 -0
- package/dist/node_modules/cytoscape/dist/cytoscape.esm.js +18100 -0
- package/dist/node_modules/cytoscape-cose-bilkent/cytoscape-cose-bilkent.js +172 -0
- package/dist/node_modules/cytoscape-fcose/cytoscape-fcose.js +604 -0
- package/dist/node_modules/cytoscape-fcose/node_modules/cose-base/cose-base.js +1142 -0
- package/dist/node_modules/cytoscape-fcose/node_modules/layout-base/layout-base.js +1635 -0
- package/dist/node_modules/d3/src/index.js +93 -0
- package/dist/node_modules/d3-array/src/ascending.js +4 -0
- package/dist/node_modules/d3-array/src/bisect.js +8 -0
- package/dist/node_modules/d3-array/src/bisector.js +39 -0
- package/dist/node_modules/d3-array/src/descending.js +4 -0
- package/dist/node_modules/d3-array/src/max.js +10 -0
- package/dist/node_modules/d3-array/src/min.js +10 -0
- package/dist/node_modules/d3-array/src/number.js +4 -0
- package/dist/node_modules/d3-array/src/range.js +6 -0
- package/dist/node_modules/d3-array/src/ticks.js +30 -0
- package/dist/node_modules/d3-axis/src/axis.js +61 -0
- package/dist/node_modules/d3-axis/src/identity.js +4 -0
- package/dist/node_modules/d3-brush/src/brush.js +15 -0
- package/dist/node_modules/d3-brush/src/index.js +1 -0
- package/dist/node_modules/d3-color/src/color.js +287 -0
- package/dist/node_modules/d3-color/src/define.js +9 -0
- package/dist/node_modules/d3-color/src/lab.js +70 -0
- package/dist/node_modules/d3-color/src/math.js +2 -0
- package/dist/node_modules/d3-dispatch/src/dispatch.js +64 -0
- package/dist/node_modules/d3-ease/src/cubic.js +4 -0
- package/dist/node_modules/d3-format/src/defaultLocale.js +11 -0
- package/dist/node_modules/d3-format/src/exponent.js +5 -0
- package/dist/node_modules/d3-format/src/formatDecimal.js +9 -0
- package/dist/node_modules/d3-format/src/formatGroup.js +7 -0
- package/dist/node_modules/d3-format/src/formatNumerals.js +8 -0
- package/dist/node_modules/d3-format/src/formatPrefixAuto.js +9 -0
- package/dist/node_modules/d3-format/src/formatRounded.js +8 -0
- package/dist/node_modules/d3-format/src/formatSpecifier.js +25 -0
- package/dist/node_modules/d3-format/src/formatTrim.js +16 -0
- package/dist/node_modules/d3-format/src/formatTypes.js +19 -0
- package/dist/node_modules/d3-format/src/identity.js +4 -0
- package/dist/node_modules/d3-format/src/locale.js +82 -0
- package/dist/node_modules/d3-format/src/precisionFixed.js +5 -0
- package/dist/node_modules/d3-format/src/precisionPrefix.js +5 -0
- package/dist/node_modules/d3-format/src/precisionRound.js +5 -0
- package/dist/node_modules/d3-hierarchy/src/accessors.js +5 -0
- package/dist/node_modules/d3-hierarchy/src/constant.js +9 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/ancestors.js +5 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/count.js +10 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/descendants.js +4 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/each.js +6 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/eachAfter.js +6 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/eachBefore.js +5 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/find.js +5 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/index.js +57 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/iterator.js +7 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/leaves.js +7 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/links.js +10 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/path.js +12 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/sort.js +6 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/sum.js +7 -0
- package/dist/node_modules/d3-hierarchy/src/treemap/dice.js +4 -0
- package/dist/node_modules/d3-hierarchy/src/treemap/index.js +36 -0
- package/dist/node_modules/d3-hierarchy/src/treemap/round.js +4 -0
- package/dist/node_modules/d3-hierarchy/src/treemap/slice.js +4 -0
- package/dist/node_modules/d3-hierarchy/src/treemap/squarify.js +33 -0
- package/dist/node_modules/d3-interpolate/src/array.js +11 -0
- package/dist/node_modules/d3-interpolate/src/basis.js +12 -0
- package/dist/node_modules/d3-interpolate/src/basisClosed.js +9 -0
- package/dist/node_modules/d3-interpolate/src/color.js +25 -0
- package/dist/node_modules/d3-interpolate/src/constant.js +2 -0
- package/dist/node_modules/d3-interpolate/src/date.js +7 -0
- package/dist/node_modules/d3-interpolate/src/hcl.js +12 -0
- package/dist/node_modules/d3-interpolate/src/number.js +6 -0
- package/dist/node_modules/d3-interpolate/src/numberArray.js +12 -0
- package/dist/node_modules/d3-interpolate/src/object.js +10 -0
- package/dist/node_modules/d3-interpolate/src/rgb.js +15 -0
- package/dist/node_modules/d3-interpolate/src/round.js +6 -0
- package/dist/node_modules/d3-interpolate/src/string.js +24 -0
- package/dist/node_modules/d3-interpolate/src/transform/decompose.js +20 -0
- package/dist/node_modules/d3-interpolate/src/transform/index.js +52 -0
- package/dist/node_modules/d3-interpolate/src/transform/parse.js +10 -0
- package/dist/node_modules/d3-interpolate/src/value.js +14 -0
- package/dist/node_modules/d3-path/src/path.js +61 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/max.js +10 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/min.js +10 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/sum.js +10 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-path/src/path.js +50 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/array.js +2 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/constant.js +6 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/link/index.js +35 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/point.js +7 -0
- package/dist/node_modules/d3-sankey/src/align.js +17 -0
- package/dist/node_modules/d3-sankey/src/constant.js +6 -0
- package/dist/node_modules/d3-sankey/src/sankey.js +224 -0
- package/dist/node_modules/d3-sankey/src/sankeyLinkHorizontal.js +11 -0
- package/dist/node_modules/d3-scale/src/band.js +39 -0
- package/dist/node_modules/d3-scale/src/constant.js +6 -0
- package/dist/node_modules/d3-scale/src/continuous.js +69 -0
- package/dist/node_modules/d3-scale/src/init.js +13 -0
- package/dist/node_modules/d3-scale/src/linear.js +32 -0
- package/dist/node_modules/d3-scale/src/nice.js +6 -0
- package/dist/node_modules/d3-scale/src/number.js +4 -0
- package/dist/node_modules/d3-scale/src/ordinal.js +27 -0
- package/dist/node_modules/d3-scale/src/tickFormat.js +27 -0
- package/dist/node_modules/d3-scale/src/time.js +43 -0
- package/dist/node_modules/d3-scale-chromatic/src/categorical/Tableau10.js +3 -0
- package/dist/node_modules/d3-scale-chromatic/src/colors.js +5 -0
- package/dist/node_modules/d3-selection/src/array.js +4 -0
- package/dist/node_modules/d3-selection/src/constant.js +6 -0
- package/dist/node_modules/d3-selection/src/creator.js +18 -0
- package/dist/node_modules/d3-selection/src/matcher.js +11 -0
- package/dist/node_modules/d3-selection/src/namespace.js +9 -0
- package/dist/node_modules/d3-selection/src/namespaces.js +8 -0
- package/dist/node_modules/d3-selection/src/select.js +5 -0
- package/dist/node_modules/d3-selection/src/selection/append.js +8 -0
- package/dist/node_modules/d3-selection/src/selection/attr.js +42 -0
- package/dist/node_modules/d3-selection/src/selection/call.js +5 -0
- package/dist/node_modules/d3-selection/src/selection/classed.js +51 -0
- package/dist/node_modules/d3-selection/src/selection/clone.js +12 -0
- package/dist/node_modules/d3-selection/src/selection/data.js +34 -0
- package/dist/node_modules/d3-selection/src/selection/datum.js +4 -0
- package/dist/node_modules/d3-selection/src/selection/dispatch.js +19 -0
- package/dist/node_modules/d3-selection/src/selection/each.js +5 -0
- package/dist/node_modules/d3-selection/src/selection/empty.js +4 -0
- package/dist/node_modules/d3-selection/src/selection/enter.js +24 -0
- package/dist/node_modules/d3-selection/src/selection/exit.js +6 -0
- package/dist/node_modules/d3-selection/src/selection/filter.js +8 -0
- package/dist/node_modules/d3-selection/src/selection/html.js +17 -0
- package/dist/node_modules/d3-selection/src/selection/index.js +84 -0
- package/dist/node_modules/d3-selection/src/selection/insert.js +12 -0
- package/dist/node_modules/d3-selection/src/selection/iterator.js +4 -0
- package/dist/node_modules/d3-selection/src/selection/join.js +5 -0
- package/dist/node_modules/d3-selection/src/selection/lower.js +7 -0
- package/dist/node_modules/d3-selection/src/selection/merge.js +7 -0
- package/dist/node_modules/d3-selection/src/selection/node.js +8 -0
- package/dist/node_modules/d3-selection/src/selection/nodes.js +4 -0
- package/dist/node_modules/d3-selection/src/selection/on.js +54 -0
- package/dist/node_modules/d3-selection/src/selection/order.js +5 -0
- package/dist/node_modules/d3-selection/src/selection/property.js +20 -0
- package/dist/node_modules/d3-selection/src/selection/raise.js +7 -0
- package/dist/node_modules/d3-selection/src/selection/remove.js +8 -0
- package/dist/node_modules/d3-selection/src/selection/select.js +8 -0
- package/dist/node_modules/d3-selection/src/selection/selectAll.js +14 -0
- package/dist/node_modules/d3-selection/src/selection/selectChild.js +14 -0
- package/dist/node_modules/d3-selection/src/selection/selectChildren.js +14 -0
- package/dist/node_modules/d3-selection/src/selection/size.js +6 -0
- package/dist/node_modules/d3-selection/src/selection/sort.js +16 -0
- package/dist/node_modules/d3-selection/src/selection/sparse.js +4 -0
- package/dist/node_modules/d3-selection/src/selection/style.js +24 -0
- package/dist/node_modules/d3-selection/src/selection/text.js +17 -0
- package/dist/node_modules/d3-selection/src/selector.js +7 -0
- package/dist/node_modules/d3-selection/src/selectorAll.js +9 -0
- package/dist/node_modules/d3-selection/src/window.js +4 -0
- package/dist/node_modules/d3-shape/src/arc.js +79 -0
- package/dist/node_modules/d3-shape/src/array.js +5 -0
- package/dist/node_modules/d3-shape/src/constant.js +6 -0
- package/dist/node_modules/d3-shape/src/curve/basis.js +45 -0
- package/dist/node_modules/d3-shape/src/curve/basisClosed.js +46 -0
- package/dist/node_modules/d3-shape/src/curve/basisOpen.js +42 -0
- package/dist/node_modules/d3-shape/src/curve/bump.js +36 -0
- package/dist/node_modules/d3-shape/src/curve/bundle.js +26 -0
- package/dist/node_modules/d3-shape/src/curve/cardinal.js +52 -0
- package/dist/node_modules/d3-shape/src/curve/cardinalClosed.js +51 -0
- package/dist/node_modules/d3-shape/src/curve/cardinalOpen.js +45 -0
- package/dist/node_modules/d3-shape/src/curve/catmullRom.js +67 -0
- package/dist/node_modules/d3-shape/src/curve/catmullRomClosed.js +56 -0
- package/dist/node_modules/d3-shape/src/curve/catmullRomOpen.js +50 -0
- package/dist/node_modules/d3-shape/src/curve/linear.js +32 -0
- package/dist/node_modules/d3-shape/src/curve/linearClosed.js +21 -0
- package/dist/node_modules/d3-shape/src/curve/monotone.js +90 -0
- package/dist/node_modules/d3-shape/src/curve/natural.js +35 -0
- package/dist/node_modules/d3-shape/src/curve/step.js +43 -0
- package/dist/node_modules/d3-shape/src/descending.js +4 -0
- package/dist/node_modules/d3-shape/src/identity.js +4 -0
- package/dist/node_modules/d3-shape/src/line.js +26 -0
- package/dist/node_modules/d3-shape/src/math.js +8 -0
- package/dist/node_modules/d3-shape/src/noop.js +2 -0
- package/dist/node_modules/d3-shape/src/path.js +15 -0
- package/dist/node_modules/d3-shape/src/pie.js +39 -0
- package/dist/node_modules/d3-shape/src/point.js +7 -0
- package/dist/node_modules/d3-time/src/day.js +17 -0
- package/dist/node_modules/d3-time/src/duration.js +2 -0
- package/dist/node_modules/d3-time/src/hour.js +15 -0
- package/dist/node_modules/d3-time/src/interval.js +24 -0
- package/dist/node_modules/d3-time/src/millisecond.js +10 -0
- package/dist/node_modules/d3-time/src/minute.js +15 -0
- package/dist/node_modules/d3-time/src/month.js +14 -0
- package/dist/node_modules/d3-time/src/second.js +9 -0
- package/dist/node_modules/d3-time/src/ticks.js +121 -0
- package/dist/node_modules/d3-time/src/week.js +21 -0
- package/dist/node_modules/d3-time/src/year.js +22 -0
- package/dist/node_modules/d3-time-format/src/defaultLocale.js +58 -0
- package/dist/node_modules/d3-time-format/src/locale.js +486 -0
- package/dist/node_modules/d3-timer/src/timeout.js +8 -0
- package/dist/node_modules/d3-timer/src/timer.js +51 -0
- package/dist/node_modules/d3-transition/src/index.js +3 -0
- package/dist/node_modules/d3-transition/src/interrupt.js +15 -0
- package/dist/node_modules/d3-transition/src/selection/index.js +4 -0
- package/dist/node_modules/d3-transition/src/selection/interrupt.js +7 -0
- package/dist/node_modules/d3-transition/src/selection/transition.js +21 -0
- package/dist/node_modules/d3-transition/src/transition/attr.js +47 -0
- package/dist/node_modules/d3-transition/src/transition/attrTween.js +36 -0
- package/dist/node_modules/d3-transition/src/transition/delay.js +16 -0
- package/dist/node_modules/d3-transition/src/transition/duration.js +16 -0
- package/dist/node_modules/d3-transition/src/transition/ease.js +12 -0
- package/dist/node_modules/d3-transition/src/transition/easeVarying.js +13 -0
- package/dist/node_modules/d3-transition/src/transition/end.js +14 -0
- package/dist/node_modules/d3-transition/src/transition/filter.js +8 -0
- package/dist/node_modules/d3-transition/src/transition/index.js +65 -0
- package/dist/node_modules/d3-transition/src/transition/interpolate.js +9 -0
- package/dist/node_modules/d3-transition/src/transition/merge.js +8 -0
- package/dist/node_modules/d3-transition/src/transition/on.js +19 -0
- package/dist/node_modules/d3-transition/src/transition/remove.js +11 -0
- package/dist/node_modules/d3-transition/src/transition/schedule.js +67 -0
- package/dist/node_modules/d3-transition/src/transition/select.js +10 -0
- package/dist/node_modules/d3-transition/src/transition/selectAll.js +13 -0
- package/dist/node_modules/d3-transition/src/transition/selection.js +6 -0
- package/dist/node_modules/d3-transition/src/transition/style.js +43 -0
- package/dist/node_modules/d3-transition/src/transition/styleTween.js +21 -0
- package/dist/node_modules/d3-transition/src/transition/text.js +15 -0
- package/dist/node_modules/d3-transition/src/transition/textTween.js +21 -0
- package/dist/node_modules/d3-transition/src/transition/transition.js +15 -0
- package/dist/node_modules/d3-transition/src/transition/tween.js +52 -0
- package/dist/node_modules/d3-zoom/src/index.js +2 -0
- package/dist/node_modules/d3-zoom/src/transform.js +46 -0
- package/dist/node_modules/d3-zoom/src/zoom.js +2 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/acyclic.js +34 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/add-border-segments.js +22 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/coordinate-system.js +44 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/data/list.js +25 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/greedy-fas.js +69 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/index.js +4 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/layout.js +241 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/nesting-graph.js +66 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/normalize.js +32 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/add-subgraph-constraints.js +14 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/barycenter.js +25 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/build-layer-graph.js +25 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/cross-count.js +33 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/index.js +44 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/init-order.js +23 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/resolve-conflicts.js +55 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/sort-subgraph.js +43 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/sort.js +27 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/parent-dummy-chains.js +40 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/position/bk.js +216 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/position/index.js +23 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/feasible-tree.js +31 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/index.js +25 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/network-simplex.js +84 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/util.js +20 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/util.js +117 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dfs.js +16 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra-all.js +1 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra.js +2 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/floyd-warshall.js +2 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/index.js +8 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/is-acyclic.js +1 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/postorder.js +5 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/preorder.js +5 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/prim.js +1 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/topsort.js +15 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/graph.js +228 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/index.js +1 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/json.js +32 -0
- package/dist/node_modules/dayjs/dayjs.min.js +298 -0
- package/dist/node_modules/dayjs/plugin/advancedFormat.js +37 -0
- package/dist/node_modules/dayjs/plugin/customParseFormat.js +160 -0
- package/dist/node_modules/dayjs/plugin/duration.js +164 -0
- package/dist/node_modules/dayjs/plugin/isoWeek.js +29 -0
- package/dist/node_modules/devlop/lib/default.js +2 -0
- package/dist/node_modules/dompurify/dist/purify.es.js +547 -0
- package/dist/node_modules/hast-util-from-dom/lib/index.js +58 -0
- package/dist/node_modules/hast-util-from-html-isomorphic/lib/browser.js +10 -0
- package/dist/node_modules/hast-util-is-element/lib/index.js +36 -0
- package/dist/node_modules/hast-util-parse-selector/lib/index.js +16 -0
- package/dist/node_modules/hast-util-to-text/lib/index.js +104 -0
- package/dist/node_modules/hastscript/lib/create-h.js +86 -0
- package/dist/node_modules/hastscript/lib/index.js +5 -0
- package/dist/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +2 -0
- package/dist/node_modules/internmap/src/index.js +36 -0
- package/dist/node_modules/katex/dist/katex.js +22103 -0
- package/dist/node_modules/khroma/dist/channels/index.js +68 -0
- package/dist/node_modules/khroma/dist/channels/reusable.js +8 -0
- package/dist/node_modules/khroma/dist/channels/type.js +20 -0
- package/dist/node_modules/khroma/dist/color/hex.js +22 -0
- package/dist/node_modules/khroma/dist/color/hsl.js +36 -0
- package/dist/node_modules/khroma/dist/color/index.js +23 -0
- package/dist/node_modules/khroma/dist/color/keyword.js +162 -0
- package/dist/node_modules/khroma/dist/color/rgb.js +23 -0
- package/dist/node_modules/khroma/dist/constants.js +9 -0
- package/dist/node_modules/khroma/dist/methods/adjust.js +8 -0
- package/dist/node_modules/khroma/dist/methods/adjust_channel.js +7 -0
- package/dist/node_modules/khroma/dist/methods/change.js +8 -0
- package/dist/node_modules/khroma/dist/methods/channel.js +4 -0
- package/dist/node_modules/khroma/dist/methods/darken.js +3 -0
- package/dist/node_modules/khroma/dist/methods/invert.js +7 -0
- package/dist/node_modules/khroma/dist/methods/is_dark.js +3 -0
- package/dist/node_modules/khroma/dist/methods/is_light.js +3 -0
- package/dist/node_modules/khroma/dist/methods/lighten.js +3 -0
- package/dist/node_modules/khroma/dist/methods/luminance.js +7 -0
- package/dist/node_modules/khroma/dist/methods/mix.js +7 -0
- package/dist/node_modules/khroma/dist/methods/rgba.js +15 -0
- package/dist/node_modules/khroma/dist/utils/channel.js +58 -0
- package/dist/node_modules/khroma/dist/utils/index.js +9 -0
- package/dist/node_modules/khroma/dist/utils/lang.js +5 -0
- package/dist/node_modules/khroma/dist/utils/unit.js +5 -0
- package/dist/node_modules/langium/lib/default-module.js +85 -0
- package/dist/node_modules/langium/lib/dependency-injection.js +62 -0
- package/dist/node_modules/langium/lib/documentation/comment-provider.js +11 -0
- package/dist/node_modules/langium/lib/documentation/documentation-provider.js +36 -0
- package/dist/node_modules/langium/lib/documentation/jsdoc.js +303 -0
- package/dist/node_modules/langium/lib/index.js +182 -0
- package/dist/node_modules/langium/lib/languages/generated/ast.js +1089 -0
- package/dist/node_modules/langium/lib/languages/grammar-config.js +13 -0
- package/dist/node_modules/langium/lib/parser/async-parser.js +83 -0
- package/dist/node_modules/langium/lib/parser/completion-parser-builder.js +7 -0
- package/dist/node_modules/langium/lib/parser/cst-node-builder.js +160 -0
- package/dist/node_modules/langium/lib/parser/indentation-aware.js +141 -0
- package/dist/node_modules/langium/lib/parser/langium-parser-builder.js +11 -0
- package/dist/node_modules/langium/lib/parser/langium-parser.js +388 -0
- package/dist/node_modules/langium/lib/parser/lexer.js +50 -0
- package/dist/node_modules/langium/lib/parser/parser-builder-base.js +275 -0
- package/dist/node_modules/langium/lib/parser/token-builder.js +61 -0
- package/dist/node_modules/langium/lib/parser/value-converter.js +78 -0
- package/dist/node_modules/langium/lib/references/linker.js +190 -0
- package/dist/node_modules/langium/lib/references/name-provider.js +13 -0
- package/dist/node_modules/langium/lib/references/references.js +76 -0
- package/dist/node_modules/langium/lib/references/scope-computation.js +35 -0
- package/dist/node_modules/langium/lib/references/scope-provider.js +34 -0
- package/dist/node_modules/langium/lib/references/scope.js +73 -0
- package/dist/node_modules/langium/lib/serializer/hydrator.js +125 -0
- package/dist/node_modules/langium/lib/serializer/json-serializer.js +145 -0
- package/dist/node_modules/langium/lib/service-registry.js +37 -0
- package/dist/node_modules/langium/lib/syntax-tree.js +70 -0
- package/dist/node_modules/langium/lib/utils/ast-utils.js +157 -0
- package/dist/node_modules/langium/lib/utils/caching.js +91 -0
- package/dist/node_modules/langium/lib/utils/cancellation.js +5 -0
- package/dist/node_modules/langium/lib/utils/collections.js +85 -0
- package/dist/node_modules/langium/lib/utils/cst-utils.js +190 -0
- package/dist/node_modules/langium/lib/utils/disposable.js +8 -0
- package/dist/node_modules/langium/lib/utils/errors.js +12 -0
- package/dist/node_modules/langium/lib/utils/event.js +5 -0
- package/dist/node_modules/langium/lib/utils/grammar-loader.js +22 -0
- package/dist/node_modules/langium/lib/utils/grammar-utils.js +296 -0
- package/dist/node_modules/langium/lib/utils/index.js +53 -0
- package/dist/node_modules/langium/lib/utils/promise-utils.js +30 -0
- package/dist/node_modules/langium/lib/utils/regexp-utils.js +167 -0
- package/dist/node_modules/langium/lib/utils/stream.js +327 -0
- package/dist/node_modules/langium/lib/utils/uri-utils.js +107 -0
- package/dist/node_modules/langium/lib/validation/document-validator.js +210 -0
- package/dist/node_modules/langium/lib/validation/validation-registry.js +87 -0
- package/dist/node_modules/langium/lib/workspace/ast-descriptions.js +57 -0
- package/dist/node_modules/langium/lib/workspace/ast-node-locator.js +28 -0
- package/dist/node_modules/langium/lib/workspace/configuration.js +51 -0
- package/dist/node_modules/langium/lib/workspace/document-builder.js +201 -0
- package/dist/node_modules/langium/lib/workspace/documents.js +142 -0
- package/dist/node_modules/langium/lib/workspace/file-system-provider.js +34 -0
- package/dist/node_modules/langium/lib/workspace/index-manager.js +49 -0
- package/dist/node_modules/langium/lib/workspace/profiler.js +89 -0
- package/dist/node_modules/langium/lib/workspace/workspace-lock.js +42 -0
- package/dist/node_modules/langium/lib/workspace/workspace-manager.js +66 -0
- package/dist/node_modules/layout-base/layout-base.js +1407 -0
- package/dist/node_modules/lodash-es/_DataView.js +4 -0
- package/dist/node_modules/lodash-es/_Hash.js +15 -0
- package/dist/node_modules/lodash-es/_ListCache.js +15 -0
- package/dist/node_modules/lodash-es/_Map.js +4 -0
- package/dist/node_modules/lodash-es/_MapCache.js +15 -0
- package/dist/node_modules/lodash-es/_Promise.js +4 -0
- package/dist/node_modules/lodash-es/_Set.js +4 -0
- package/dist/node_modules/lodash-es/_SetCache.js +10 -0
- package/dist/node_modules/lodash-es/_Stack.js +12 -0
- package/dist/node_modules/lodash-es/_Symbol.js +3 -0
- package/dist/node_modules/lodash-es/_Uint8Array.js +3 -0
- package/dist/node_modules/lodash-es/_WeakMap.js +4 -0
- package/dist/node_modules/lodash-es/_apply.js +11 -0
- package/dist/node_modules/lodash-es/_arrayAggregator.js +9 -0
- package/dist/node_modules/lodash-es/_arrayEach.js +6 -0
- package/dist/node_modules/lodash-es/_arrayEvery.js +6 -0
- package/dist/node_modules/lodash-es/_arrayFilter.js +9 -0
- package/dist/node_modules/lodash-es/_arrayIncludes.js +6 -0
- package/dist/node_modules/lodash-es/_arrayIncludesWith.js +6 -0
- package/dist/node_modules/lodash-es/_arrayLikeKeys.js +14 -0
- package/dist/node_modules/lodash-es/_arrayMap.js +6 -0
- package/dist/node_modules/lodash-es/_arrayPush.js +6 -0
- package/dist/node_modules/lodash-es/_arrayReduce.js +7 -0
- package/dist/node_modules/lodash-es/_arraySome.js +6 -0
- package/dist/node_modules/lodash-es/_asciiSize.js +3 -0
- package/dist/node_modules/lodash-es/_assignMergeValue.js +7 -0
- package/dist/node_modules/lodash-es/_assignValue.js +9 -0
- package/dist/node_modules/lodash-es/_assocIndexOf.js +7 -0
- package/dist/node_modules/lodash-es/_baseAggregator.js +8 -0
- package/dist/node_modules/lodash-es/_baseAssign.js +7 -0
- package/dist/node_modules/lodash-es/_baseAssignIn.js +7 -0
- package/dist/node_modules/lodash-es/_baseAssignValue.js +11 -0
- package/dist/node_modules/lodash-es/_baseClone.js +56 -0
- package/dist/node_modules/lodash-es/_baseCreate.js +12 -0
- package/dist/node_modules/lodash-es/_baseDifference.js +22 -0
- package/dist/node_modules/lodash-es/_baseEach.js +4 -0
- package/dist/node_modules/lodash-es/_baseEvery.js +9 -0
- package/dist/node_modules/lodash-es/_baseExtremum.js +10 -0
- package/dist/node_modules/lodash-es/_baseFilter.js +9 -0
- package/dist/node_modules/lodash-es/_baseFindIndex.js +6 -0
- package/dist/node_modules/lodash-es/_baseFlatten.js +12 -0
- package/dist/node_modules/lodash-es/_baseFor.js +3 -0
- package/dist/node_modules/lodash-es/_baseForOwn.js +7 -0
- package/dist/node_modules/lodash-es/_baseGet.js +9 -0
- package/dist/node_modules/lodash-es/_baseGetAllKeys.js +8 -0
- package/dist/node_modules/lodash-es/_baseGetTag.js +9 -0
- package/dist/node_modules/lodash-es/_baseGt.js +5 -0
- package/dist/node_modules/lodash-es/_baseHas.js +6 -0
- package/dist/node_modules/lodash-es/_baseHasIn.js +5 -0
- package/dist/node_modules/lodash-es/_baseIndexOf.js +8 -0
- package/dist/node_modules/lodash-es/_baseIsArguments.js +8 -0
- package/dist/node_modules/lodash-es/_baseIsEqual.js +7 -0
- package/dist/node_modules/lodash-es/_baseIsEqualDeep.js +29 -0
- package/dist/node_modules/lodash-es/_baseIsMap.js +8 -0
- package/dist/node_modules/lodash-es/_baseIsMatch.js +25 -0
- package/dist/node_modules/lodash-es/_baseIsNaN.js +5 -0
- package/dist/node_modules/lodash-es/_baseIsNative.js +10 -0
- package/dist/node_modules/lodash-es/_baseIsRegExp.js +8 -0
- package/dist/node_modules/lodash-es/_baseIsSet.js +8 -0
- package/dist/node_modules/lodash-es/_baseIsTypedArray.js +10 -0
- package/dist/node_modules/lodash-es/_baseIteratee.js +10 -0
- package/dist/node_modules/lodash-es/_baseKeys.js +11 -0
- package/dist/node_modules/lodash-es/_baseKeysIn.js +12 -0
- package/dist/node_modules/lodash-es/_baseLt.js +5 -0
- package/dist/node_modules/lodash-es/_baseMap.js +10 -0
- package/dist/node_modules/lodash-es/_baseMatches.js +11 -0
- package/dist/node_modules/lodash-es/_baseMatchesProperty.js +16 -0
- package/dist/node_modules/lodash-es/_baseMerge.js +18 -0
- package/dist/node_modules/lodash-es/_baseMergeDeep.js +30 -0
- package/dist/node_modules/lodash-es/_baseOrderBy.js +30 -0
- package/dist/node_modules/lodash-es/_basePick.js +9 -0
- package/dist/node_modules/lodash-es/_basePickBy.js +12 -0
- package/dist/node_modules/lodash-es/_baseProperty.js +7 -0
- package/dist/node_modules/lodash-es/_basePropertyDeep.js +8 -0
- package/dist/node_modules/lodash-es/_baseRange.js +7 -0
- package/dist/node_modules/lodash-es/_baseReduce.js +7 -0
- package/dist/node_modules/lodash-es/_baseRest.js +8 -0
- package/dist/node_modules/lodash-es/_baseSet.js +21 -0
- package/dist/node_modules/lodash-es/_baseSetToString.js +12 -0
- package/dist/node_modules/lodash-es/_baseSlice.js +8 -0
- package/dist/node_modules/lodash-es/_baseSome.js +9 -0
- package/dist/node_modules/lodash-es/_baseSortBy.js +7 -0
- package/dist/node_modules/lodash-es/_baseTimes.js +6 -0
- package/dist/node_modules/lodash-es/_baseToString.js +14 -0
- package/dist/node_modules/lodash-es/_baseTrim.js +7 -0
- package/dist/node_modules/lodash-es/_baseUnary.js +7 -0
- package/dist/node_modules/lodash-es/_baseUniq.js +26 -0
- package/dist/node_modules/lodash-es/_baseValues.js +8 -0
- package/dist/node_modules/lodash-es/_baseZipObject.js +9 -0
- package/dist/node_modules/lodash-es/_cacheHas.js +5 -0
- package/dist/node_modules/lodash-es/_castFunction.js +6 -0
- package/dist/node_modules/lodash-es/_castPath.js +9 -0
- package/dist/node_modules/lodash-es/_cloneArrayBuffer.js +7 -0
- package/dist/node_modules/lodash-es/_cloneBuffer.js +9 -0
- package/dist/node_modules/lodash-es/_cloneDataView.js +7 -0
- package/dist/node_modules/lodash-es/_cloneRegExp.js +7 -0
- package/dist/node_modules/lodash-es/_cloneSymbol.js +7 -0
- package/dist/node_modules/lodash-es/_cloneTypedArray.js +7 -0
- package/dist/node_modules/lodash-es/_compareAscending.js +11 -0
- package/dist/node_modules/lodash-es/_compareMultiple.js +10 -0
- package/dist/node_modules/lodash-es/_copyArray.js +7 -0
- package/dist/node_modules/lodash-es/_copyObject.js +13 -0
- package/dist/node_modules/lodash-es/_copySymbols.js +7 -0
- package/dist/node_modules/lodash-es/_copySymbolsIn.js +7 -0
- package/dist/node_modules/lodash-es/_coreJsData.js +3 -0
- package/dist/node_modules/lodash-es/_createAggregator.js +12 -0
- package/dist/node_modules/lodash-es/_createAssigner.js +14 -0
- package/dist/node_modules/lodash-es/_createBaseEach.js +11 -0
- package/dist/node_modules/lodash-es/_createBaseFor.js +11 -0
- package/dist/node_modules/lodash-es/_createFind.js +18 -0
- package/dist/node_modules/lodash-es/_createRange.js +10 -0
- package/dist/node_modules/lodash-es/_createSet.js +7 -0
- package/dist/node_modules/lodash-es/_defineProperty.js +8 -0
- package/dist/node_modules/lodash-es/_equalArrays.js +34 -0
- package/dist/node_modules/lodash-es/_equalByTag.js +34 -0
- package/dist/node_modules/lodash-es/_equalObjects.js +31 -0
- package/dist/node_modules/lodash-es/_flatRest.js +8 -0
- package/dist/node_modules/lodash-es/_freeGlobal.js +2 -0
- package/dist/node_modules/lodash-es/_getAllKeys.js +8 -0
- package/dist/node_modules/lodash-es/_getAllKeysIn.js +8 -0
- package/dist/node_modules/lodash-es/_getMapData.js +7 -0
- package/dist/node_modules/lodash-es/_getMatchData.js +15 -0
- package/dist/node_modules/lodash-es/_getNative.js +8 -0
- package/dist/node_modules/lodash-es/_getPrototype.js +3 -0
- package/dist/node_modules/lodash-es/_getRawTag.js +13 -0
- package/dist/node_modules/lodash-es/_getSymbols.js +8 -0
- package/dist/node_modules/lodash-es/_getSymbolsIn.js +9 -0
- package/dist/node_modules/lodash-es/_getTag.js +21 -0
- package/dist/node_modules/lodash-es/_getValue.js +5 -0
- package/dist/node_modules/lodash-es/_hasPath.js +17 -0
- package/dist/node_modules/lodash-es/_hasUnicode.js +6 -0
- package/dist/node_modules/lodash-es/_hashClear.js +6 -0
- package/dist/node_modules/lodash-es/_hashDelete.js +6 -0
- package/dist/node_modules/lodash-es/_hashGet.js +12 -0
- package/dist/node_modules/lodash-es/_hashHas.js +8 -0
- package/dist/node_modules/lodash-es/_hashSet.js +8 -0
- package/dist/node_modules/lodash-es/_initCloneArray.js +7 -0
- package/dist/node_modules/lodash-es/_initCloneByTag.js +32 -0
- package/dist/node_modules/lodash-es/_initCloneObject.js +8 -0
- package/dist/node_modules/lodash-es/_isFlattenable.js +9 -0
- package/dist/node_modules/lodash-es/_isIndex.js +7 -0
- package/dist/node_modules/lodash-es/_isIterateeCall.js +11 -0
- package/dist/node_modules/lodash-es/_isKey.js +10 -0
- package/dist/node_modules/lodash-es/_isKeyable.js +6 -0
- package/dist/node_modules/lodash-es/_isMasked.js +10 -0
- package/dist/node_modules/lodash-es/_isPrototype.js +7 -0
- package/dist/node_modules/lodash-es/_isStrictComparable.js +6 -0
- package/dist/node_modules/lodash-es/_listCacheClear.js +5 -0
- package/dist/node_modules/lodash-es/_listCacheDelete.js +8 -0
- package/dist/node_modules/lodash-es/_listCacheGet.js +7 -0
- package/dist/node_modules/lodash-es/_listCacheHas.js +6 -0
- package/dist/node_modules/lodash-es/_listCacheSet.js +7 -0
- package/dist/node_modules/lodash-es/_mapCacheClear.js +12 -0
- package/dist/node_modules/lodash-es/_mapCacheDelete.js +7 -0
- package/dist/node_modules/lodash-es/_mapCacheGet.js +6 -0
- package/dist/node_modules/lodash-es/_mapCacheHas.js +6 -0
- package/dist/node_modules/lodash-es/_mapCacheSet.js +7 -0
- package/dist/node_modules/lodash-es/_mapToArray.js +8 -0
- package/dist/node_modules/lodash-es/_matchesStrictComparable.js +7 -0
- package/dist/node_modules/lodash-es/_memoizeCapped.js +10 -0
- package/dist/node_modules/lodash-es/_nativeCreate.js +3 -0
- package/dist/node_modules/lodash-es/_nativeKeys.js +3 -0
- package/dist/node_modules/lodash-es/_nativeKeysIn.js +7 -0
- package/dist/node_modules/lodash-es/_nodeUtil.js +7 -0
- package/dist/node_modules/lodash-es/_objectToString.js +6 -0
- package/dist/node_modules/lodash-es/_overArg.js +7 -0
- package/dist/node_modules/lodash-es/_overRest.js +12 -0
- package/dist/node_modules/lodash-es/_root.js +3 -0
- package/dist/node_modules/lodash-es/_safeGet.js +5 -0
- package/dist/node_modules/lodash-es/_setCacheAdd.js +6 -0
- package/dist/node_modules/lodash-es/_setCacheHas.js +5 -0
- package/dist/node_modules/lodash-es/_setToArray.js +8 -0
- package/dist/node_modules/lodash-es/_setToString.js +4 -0
- package/dist/node_modules/lodash-es/_shortOut.js +13 -0
- package/dist/node_modules/lodash-es/_stackClear.js +6 -0
- package/dist/node_modules/lodash-es/_stackDelete.js +6 -0
- package/dist/node_modules/lodash-es/_stackGet.js +5 -0
- package/dist/node_modules/lodash-es/_stackHas.js +5 -0
- package/dist/node_modules/lodash-es/_stackSet.js +15 -0
- package/dist/node_modules/lodash-es/_strictIndexOf.js +6 -0
- package/dist/node_modules/lodash-es/_stringSize.js +8 -0
- package/dist/node_modules/lodash-es/_stringToPath.js +8 -0
- package/dist/node_modules/lodash-es/_toKey.js +9 -0
- package/dist/node_modules/lodash-es/_toSource.js +14 -0
- package/dist/node_modules/lodash-es/_trimmedEndIndex.js +7 -0
- package/dist/node_modules/lodash-es/_unicodeSize.js +17 -0
- package/dist/node_modules/lodash-es/assign.js +14 -0
- package/dist/node_modules/lodash-es/clone.js +7 -0
- package/dist/node_modules/lodash-es/cloneDeep.js +7 -0
- package/dist/node_modules/lodash-es/compact.js +9 -0
- package/dist/node_modules/lodash-es/constant.js +7 -0
- package/dist/node_modules/lodash-es/defaults.js +14 -0
- package/dist/node_modules/lodash-es/difference.js +8 -0
- package/dist/node_modules/lodash-es/drop.js +8 -0
- package/dist/node_modules/lodash-es/dropRight.js +8 -0
- package/dist/node_modules/lodash-es/eq.js +5 -0
- package/dist/node_modules/lodash-es/every.js +11 -0
- package/dist/node_modules/lodash-es/filter.js +9 -0
- package/dist/node_modules/lodash-es/find.js +4 -0
- package/dist/node_modules/lodash-es/findIndex.js +12 -0
- package/dist/node_modules/lodash-es/flatMap.js +7 -0
- package/dist/node_modules/lodash-es/flatten.js +6 -0
- package/dist/node_modules/lodash-es/forEach.js +9 -0
- package/dist/node_modules/lodash-es/forIn.js +8 -0
- package/dist/node_modules/lodash-es/forOwn.js +7 -0
- package/dist/node_modules/lodash-es/get.js +7 -0
- package/dist/node_modules/lodash-es/groupBy.js +6 -0
- package/dist/node_modules/lodash-es/has.js +7 -0
- package/dist/node_modules/lodash-es/hasIn.js +7 -0
- package/dist/node_modules/lodash-es/head.js +5 -0
- package/dist/node_modules/lodash-es/identity.js +5 -0
- package/dist/node_modules/lodash-es/includes.js +13 -0
- package/dist/node_modules/lodash-es/indexOf.js +11 -0
- package/dist/node_modules/lodash-es/isArguments.js +8 -0
- package/dist/node_modules/lodash-es/isArray.js +2 -0
- package/dist/node_modules/lodash-es/isArrayLike.js +7 -0
- package/dist/node_modules/lodash-es/isArrayLikeObject.js +7 -0
- package/dist/node_modules/lodash-es/isBuffer.js +4 -0
- package/dist/node_modules/lodash-es/isEmpty.js +20 -0
- package/dist/node_modules/lodash-es/isFunction.js +10 -0
- package/dist/node_modules/lodash-es/isLength.js +6 -0
- package/dist/node_modules/lodash-es/isMap.js +5 -0
- package/dist/node_modules/lodash-es/isObject.js +6 -0
- package/dist/node_modules/lodash-es/isObjectLike.js +5 -0
- package/dist/node_modules/lodash-es/isPlainObject.js +13 -0
- package/dist/node_modules/lodash-es/isRegExp.js +5 -0
- package/dist/node_modules/lodash-es/isSet.js +5 -0
- package/dist/node_modules/lodash-es/isString.js +9 -0
- package/dist/node_modules/lodash-es/isSymbol.js +8 -0
- package/dist/node_modules/lodash-es/isTypedArray.js +5 -0
- package/dist/node_modules/lodash-es/isUndefined.js +5 -0
- package/dist/node_modules/lodash-es/keys.js +8 -0
- package/dist/node_modules/lodash-es/keysIn.js +8 -0
- package/dist/node_modules/lodash-es/last.js +6 -0
- package/dist/node_modules/lodash-es/map.js +9 -0
- package/dist/node_modules/lodash-es/mapValues.js +11 -0
- package/dist/node_modules/lodash-es/max.js +8 -0
- package/dist/node_modules/lodash-es/memoize.js +15 -0
- package/dist/node_modules/lodash-es/merge.js +6 -0
- package/dist/node_modules/lodash-es/min.js +8 -0
- package/dist/node_modules/lodash-es/minBy.js +8 -0
- package/dist/node_modules/lodash-es/negate.js +16 -0
- package/dist/node_modules/lodash-es/noop.js +3 -0
- package/dist/node_modules/lodash-es/now.js +5 -0
- package/dist/node_modules/lodash-es/pick.js +6 -0
- package/dist/node_modules/lodash-es/pickBy.js +15 -0
- package/dist/node_modules/lodash-es/property.js +9 -0
- package/dist/node_modules/lodash-es/range.js +3 -0
- package/dist/node_modules/lodash-es/reduce.js +11 -0
- package/dist/node_modules/lodash-es/reject.js +10 -0
- package/dist/node_modules/lodash-es/size.js +14 -0
- package/dist/node_modules/lodash-es/some.js +11 -0
- package/dist/node_modules/lodash-es/sortBy.js +10 -0
- package/dist/node_modules/lodash-es/stubArray.js +5 -0
- package/dist/node_modules/lodash-es/stubFalse.js +5 -0
- package/dist/node_modules/lodash-es/toFinite.js +7 -0
- package/dist/node_modules/lodash-es/toInteger.js +7 -0
- package/dist/node_modules/lodash-es/toNumber.js +18 -0
- package/dist/node_modules/lodash-es/toPlainObject.js +7 -0
- package/dist/node_modules/lodash-es/toString.js +6 -0
- package/dist/node_modules/lodash-es/union.js +8 -0
- package/dist/node_modules/lodash-es/uniq.js +6 -0
- package/dist/node_modules/lodash-es/uniqBy.js +7 -0
- package/dist/node_modules/lodash-es/uniqueId.js +8 -0
- package/dist/node_modules/lodash-es/values.js +7 -0
- package/dist/node_modules/lodash-es/zipObject.js +7 -0
- package/dist/node_modules/longest-streak/index.js +7 -0
- package/dist/node_modules/markdown-table/index.js +57 -0
- package/dist/node_modules/marked/lib/marked.esm.js +1384 -0
- package/dist/node_modules/mdast-util-find-and-replace/lib/index.js +59 -0
- package/dist/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js +5 -0
- package/dist/node_modules/mdast-util-gfm/lib/index.js +24 -0
- package/dist/node_modules/mdast-util-gfm-autolink-literal/lib/index.js +127 -0
- package/dist/node_modules/mdast-util-gfm-footnote/lib/index.js +95 -0
- package/dist/node_modules/mdast-util-gfm-strikethrough/lib/index.js +47 -0
- package/dist/node_modules/mdast-util-gfm-table/lib/index.js +135 -0
- package/dist/node_modules/mdast-util-gfm-task-list-item/lib/index.js +56 -0
- package/dist/node_modules/mdast-util-math/lib/index.js +142 -0
- package/dist/node_modules/mdast-util-phrasing/lib/index.js +20 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js +10 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/break.js +7 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/code.js +34 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/definition.js +22 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js +23 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/heading.js +22 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/html.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js +21 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image.js +26 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/index.js +42 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js +17 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js +21 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link.js +39 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list-item.js +16 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list.js +24 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js +5 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/root.js +7 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/strong.js +23 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/text.js +4 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js +7 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js +9 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-fence.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-quote.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-strong.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js +4 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-info.js +36 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js +4 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js +10 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js +10 -0
- package/dist/node_modules/mdast-util-to-string/lib/index.js +22 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-VXUJARFQ.js +673 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-VD42YOAC.js +3010 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-YG6GDRKO.js +2955 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-4BX2VUAB.js +6 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-55IACEB6.js +8 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ABZYJK2D.js +1547 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-AGHRB4JF.js +29 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ATLVNIR6.js +65 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-B4BG7PRW.js +3110 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-CVBHYZKI.js +10 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DI55MBZ5.js +1994 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DR5Q36YT.js +135 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-EXTU4WIE.js +9 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-FMBD7UC4.js +3 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-HN2XXSSU.js +74 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JA3XYJ7Z.js +247 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JZLCHNYA.js +3516 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-MI3HLSF2.js +1140 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-N4CR4FBY.js +39 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QN33PNHL.js +23 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QXUST7PY.js +497 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QZHKN3VN.js +11 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-S3R3BYOJ.js +338 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-TZMSLE5B.js +55 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-2ON5EDUG.js +26 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-WZHVMYZB.js +26 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/cose-bilkent-S5V4N54A.js +219 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/dagre-6UL2VRFP.js +263 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-PSM6KHXK.js +283 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-QEK2KX5R.js +211 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-S2PKOQOG.js +129 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-Q2GNP2WA.js +1599 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-NV44I4VS.js +4128 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-JELNMOA3.js +1688 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-V2S2FVAM.js +621 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-HS3SLOUP.js +18 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-XKPGCS4Q.js +883 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-3W4ZIXB7.js +970 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-VGOIOE7T.js +931 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-ADFJNKIX.js +117 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-AYHSOK5B.js +1970 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-UZGBJVZJ.js +2187 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-TZEHDZUN.js +519 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-WL72ISMW.js +3560 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-FKZM4ZOC.js +220 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-4FDKWEC3.js +25 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-IT6M3QCI.js +833 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-PRI3JC2R.js +1975 -0
- package/dist/node_modules/mermaid/dist/mermaid.core.js +662 -0
- package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +16 -0
- package/dist/node_modules/micromark-extension-gfm/index.js +16 -0
- package/dist/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js +172 -0
- package/dist/node_modules/micromark-extension-gfm-footnote/lib/syntax.js +191 -0
- package/dist/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js +94 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/edit-map.js +41 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/infer.js +18 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/syntax.js +199 -0
- package/dist/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js +32 -0
- package/dist/node_modules/micromark-extension-math/lib/math-flow.js +72 -0
- package/dist/node_modules/micromark-extension-math/lib/math-text.js +44 -0
- package/dist/node_modules/micromark-extension-math/lib/syntax.js +9 -0
- package/dist/node_modules/micromark-factory-space/index.js +12 -0
- package/dist/node_modules/micromark-util-character/index.js +21 -0
- package/dist/node_modules/micromark-util-chunked/index.js +6 -0
- package/dist/node_modules/micromark-util-classify-character/index.js +6 -0
- package/dist/node_modules/micromark-util-combine-extensions/index.js +24 -0
- package/dist/node_modules/micromark-util-normalize-identifier/index.js +4 -0
- package/dist/node_modules/micromark-util-resolve-all/index.js +9 -0
- package/dist/node_modules/property-information/index.js +23 -0
- package/dist/node_modules/property-information/lib/aria.js +59 -0
- package/dist/node_modules/property-information/lib/find.js +29 -0
- package/dist/node_modules/property-information/lib/html.js +314 -0
- package/dist/node_modules/property-information/lib/normalize.js +4 -0
- package/dist/node_modules/property-information/lib/svg.js +560 -0
- package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +5 -0
- package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +4 -0
- package/dist/node_modules/property-information/lib/util/create.js +12 -0
- package/dist/node_modules/property-information/lib/util/defined-info.js +16 -0
- package/dist/node_modules/property-information/lib/util/info.js +7 -0
- package/dist/node_modules/property-information/lib/util/merge.js +7 -0
- package/dist/node_modules/property-information/lib/util/schema.js +7 -0
- package/dist/node_modules/property-information/lib/util/types.js +15 -0
- package/dist/node_modules/property-information/lib/xlink.js +17 -0
- package/dist/node_modules/property-information/lib/xml.js +13 -0
- package/dist/node_modules/property-information/lib/xmlns.js +12 -0
- package/dist/node_modules/rehype-katex/lib/index.js +60 -0
- package/dist/node_modules/remark-gfm/lib/index.js +8 -0
- package/dist/node_modules/remark-math/lib/index.js +8 -0
- package/dist/node_modules/roughjs/bundled/rough.esm.js +1350 -0
- package/dist/node_modules/space-separated-tokens/index.js +5 -0
- package/dist/node_modules/stylis/src/Enum.js +2 -0
- package/dist/node_modules/stylis/src/Parser.js +93 -0
- package/dist/node_modules/stylis/src/Serializer.js +19 -0
- package/dist/node_modules/stylis/src/Tokenizer.js +104 -0
- package/dist/node_modules/stylis/src/Utility.js +26 -0
- package/dist/node_modules/ts-dedent/esm/index.js +25 -0
- package/dist/node_modules/unist-util-find-after/lib/index.js +10 -0
- package/dist/node_modules/unist-util-is/lib/index.js +45 -0
- package/dist/node_modules/unist-util-visit/lib/index.js +10 -0
- package/dist/node_modules/unist-util-visit-parents/lib/color.js +4 -0
- package/dist/node_modules/unist-util-visit-parents/lib/index.js +35 -0
- package/dist/node_modules/uuid/dist/esm-browser/native.js +2 -0
- package/dist/node_modules/uuid/dist/esm-browser/rng.js +9 -0
- package/dist/node_modules/uuid/dist/esm-browser/stringify.js +6 -0
- package/dist/node_modules/uuid/dist/esm-browser/v4.js +17 -0
- package/dist/node_modules/vscode-jsonrpc/browser.js +7 -0
- package/dist/node_modules/vscode-jsonrpc/lib/browser/main.js +52 -0
- package/dist/node_modules/vscode-jsonrpc/lib/browser/ril.js +120 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/api.js +337 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/cancellation.js +57 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/connection.js +647 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/disposable.js +13 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/events.js +64 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/is.js +34 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/linkedMap.js +235 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageBuffer.js +93 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageReader.js +129 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageWriter.js +85 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/messages.js +161 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/ral.js +18 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/semaphore.js +44 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation.js +58 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/browser/main.js +28 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/api.js +36 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/connection.js +12 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/messages.js +31 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy.js +19 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider.js +15 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic.js +33 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations.js +35 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange.js +15 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint.js +19 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineCompletion.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue.js +15 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.js +674 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker.js +19 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook.js +126 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress.js +24 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens.js +31 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy.js +19 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js +15 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/utils/is.js +42 -0
- package/dist/node_modules/vscode-languageserver-textdocument/lib/esm/main.js +138 -0
- package/dist/node_modules/vscode-languageserver-types/lib/esm/main.js +1084 -0
- package/dist/node_modules/vscode-uri/lib/esm/index.js +373 -0
- package/dist/node_modules/web-namespaces/index.js +9 -0
- package/dist/pages/WorkspacePage.js +63 -0
- package/dist/pages/WorkspacesPage.js +36 -0
- package/package.json +32 -32
|
@@ -0,0 +1,1089 @@
|
|
|
1
|
+
import { __export } from "../../../../../_virtual/rolldown_runtime.js";
|
|
2
|
+
import { AbstractAstReflection } from "../../syntax-tree.js";
|
|
3
|
+
var ast_exports = /* @__PURE__ */ __export({
|
|
4
|
+
AbstractElement: () => AbstractElement,
|
|
5
|
+
AbstractParserRule: () => AbstractParserRule,
|
|
6
|
+
AbstractRule: () => AbstractRule,
|
|
7
|
+
AbstractType: () => AbstractType,
|
|
8
|
+
Action: () => Action,
|
|
9
|
+
Alternatives: () => Alternatives,
|
|
10
|
+
ArrayLiteral: () => ArrayLiteral,
|
|
11
|
+
ArrayType: () => ArrayType,
|
|
12
|
+
Assignment: () => Assignment,
|
|
13
|
+
BooleanLiteral: () => BooleanLiteral,
|
|
14
|
+
CharacterRange: () => CharacterRange,
|
|
15
|
+
Condition: () => Condition,
|
|
16
|
+
Conjunction: () => Conjunction,
|
|
17
|
+
CrossReference: () => CrossReference,
|
|
18
|
+
Disjunction: () => Disjunction,
|
|
19
|
+
EndOfFile: () => EndOfFile,
|
|
20
|
+
Grammar: () => Grammar,
|
|
21
|
+
GrammarImport: () => GrammarImport,
|
|
22
|
+
Group: () => Group,
|
|
23
|
+
InferredType: () => InferredType,
|
|
24
|
+
InfixRule: () => InfixRule,
|
|
25
|
+
InfixRuleOperatorList: () => InfixRuleOperatorList,
|
|
26
|
+
InfixRuleOperators: () => InfixRuleOperators,
|
|
27
|
+
Interface: () => Interface,
|
|
28
|
+
Keyword: () => Keyword,
|
|
29
|
+
LangiumGrammarAstReflection: () => LangiumGrammarAstReflection,
|
|
30
|
+
LangiumGrammarTerminals: () => LangiumGrammarTerminals,
|
|
31
|
+
NamedArgument: () => NamedArgument,
|
|
32
|
+
NegatedToken: () => NegatedToken,
|
|
33
|
+
Negation: () => Negation,
|
|
34
|
+
NumberLiteral: () => NumberLiteral,
|
|
35
|
+
Parameter: () => Parameter,
|
|
36
|
+
ParameterReference: () => ParameterReference,
|
|
37
|
+
ParserRule: () => ParserRule,
|
|
38
|
+
ReferenceType: () => ReferenceType,
|
|
39
|
+
RegexToken: () => RegexToken,
|
|
40
|
+
ReturnType: () => ReturnType,
|
|
41
|
+
RuleCall: () => RuleCall,
|
|
42
|
+
SimpleType: () => SimpleType,
|
|
43
|
+
StringLiteral: () => StringLiteral,
|
|
44
|
+
TerminalAlternatives: () => TerminalAlternatives,
|
|
45
|
+
TerminalElement: () => TerminalElement,
|
|
46
|
+
TerminalGroup: () => TerminalGroup,
|
|
47
|
+
TerminalRule: () => TerminalRule,
|
|
48
|
+
TerminalRuleCall: () => TerminalRuleCall,
|
|
49
|
+
Type: () => Type,
|
|
50
|
+
TypeAttribute: () => TypeAttribute,
|
|
51
|
+
TypeDefinition: () => TypeDefinition,
|
|
52
|
+
UnionType: () => UnionType,
|
|
53
|
+
UnorderedGroup: () => UnorderedGroup,
|
|
54
|
+
UntilToken: () => UntilToken,
|
|
55
|
+
ValueLiteral: () => ValueLiteral,
|
|
56
|
+
Wildcard: () => Wildcard,
|
|
57
|
+
isAbstractElement: () => isAbstractElement,
|
|
58
|
+
isAbstractParserRule: () => isAbstractParserRule,
|
|
59
|
+
isAbstractRule: () => isAbstractRule,
|
|
60
|
+
isAbstractType: () => isAbstractType,
|
|
61
|
+
isAction: () => isAction,
|
|
62
|
+
isAlternatives: () => isAlternatives,
|
|
63
|
+
isArrayLiteral: () => isArrayLiteral,
|
|
64
|
+
isArrayType: () => isArrayType,
|
|
65
|
+
isAssignment: () => isAssignment,
|
|
66
|
+
isBooleanLiteral: () => isBooleanLiteral,
|
|
67
|
+
isCharacterRange: () => isCharacterRange,
|
|
68
|
+
isCondition: () => isCondition,
|
|
69
|
+
isConjunction: () => isConjunction,
|
|
70
|
+
isCrossReference: () => isCrossReference,
|
|
71
|
+
isDisjunction: () => isDisjunction,
|
|
72
|
+
isEndOfFile: () => isEndOfFile,
|
|
73
|
+
isGrammar: () => isGrammar,
|
|
74
|
+
isGrammarImport: () => isGrammarImport,
|
|
75
|
+
isGroup: () => isGroup,
|
|
76
|
+
isInferredType: () => isInferredType,
|
|
77
|
+
isInfixRule: () => isInfixRule,
|
|
78
|
+
isInfixRuleOperatorList: () => isInfixRuleOperatorList,
|
|
79
|
+
isInfixRuleOperators: () => isInfixRuleOperators,
|
|
80
|
+
isInterface: () => isInterface,
|
|
81
|
+
isKeyword: () => isKeyword,
|
|
82
|
+
isNamedArgument: () => isNamedArgument,
|
|
83
|
+
isNegatedToken: () => isNegatedToken,
|
|
84
|
+
isNegation: () => isNegation,
|
|
85
|
+
isNumberLiteral: () => isNumberLiteral,
|
|
86
|
+
isParameter: () => isParameter,
|
|
87
|
+
isParameterReference: () => isParameterReference,
|
|
88
|
+
isParserRule: () => isParserRule,
|
|
89
|
+
isReferenceType: () => isReferenceType,
|
|
90
|
+
isRegexToken: () => isRegexToken,
|
|
91
|
+
isReturnType: () => isReturnType,
|
|
92
|
+
isRuleCall: () => isRuleCall,
|
|
93
|
+
isSimpleType: () => isSimpleType,
|
|
94
|
+
isStringLiteral: () => isStringLiteral,
|
|
95
|
+
isTerminalAlternatives: () => isTerminalAlternatives,
|
|
96
|
+
isTerminalElement: () => isTerminalElement,
|
|
97
|
+
isTerminalGroup: () => isTerminalGroup,
|
|
98
|
+
isTerminalRule: () => isTerminalRule,
|
|
99
|
+
isTerminalRuleCall: () => isTerminalRuleCall,
|
|
100
|
+
isType: () => isType,
|
|
101
|
+
isTypeAttribute: () => isTypeAttribute,
|
|
102
|
+
isTypeDefinition: () => isTypeDefinition,
|
|
103
|
+
isUnionType: () => isUnionType,
|
|
104
|
+
isUnorderedGroup: () => isUnorderedGroup,
|
|
105
|
+
isUntilToken: () => isUntilToken,
|
|
106
|
+
isValueLiteral: () => isValueLiteral,
|
|
107
|
+
isWildcard: () => isWildcard,
|
|
108
|
+
reflection: () => reflection
|
|
109
|
+
}, 1);
|
|
110
|
+
const LangiumGrammarTerminals = {
|
|
111
|
+
ID: /\^?[_a-zA-Z][\w_]*/,
|
|
112
|
+
STRING: /"(\\.|[^"\\])*"|'(\\.|[^'\\])*'/,
|
|
113
|
+
NUMBER: /NaN|-?((\d*\.\d+|\d+)([Ee][+-]?\d+)?|Infinity)/,
|
|
114
|
+
RegexLiteral: /\/(?![*+?])(?:[^\r\n\[/\\]|\\.|\[(?:[^\r\n\]\\]|\\.)*\])+\/[a-z]*/,
|
|
115
|
+
WS: /\s+/,
|
|
116
|
+
ML_COMMENT: /\/\*[\s\S]*?\*\//,
|
|
117
|
+
SL_COMMENT: /\/\/[^\n\r]*/
|
|
118
|
+
}, AbstractElement = {
|
|
119
|
+
$type: "AbstractElement",
|
|
120
|
+
cardinality: "cardinality"
|
|
121
|
+
};
|
|
122
|
+
function isAbstractElement(e) {
|
|
123
|
+
return reflection.isInstance(e, AbstractElement.$type);
|
|
124
|
+
}
|
|
125
|
+
const AbstractParserRule = { $type: "AbstractParserRule" };
|
|
126
|
+
function isAbstractParserRule(e) {
|
|
127
|
+
return reflection.isInstance(e, AbstractParserRule.$type);
|
|
128
|
+
}
|
|
129
|
+
const AbstractRule = { $type: "AbstractRule" };
|
|
130
|
+
function isAbstractRule(e) {
|
|
131
|
+
return reflection.isInstance(e, AbstractRule.$type);
|
|
132
|
+
}
|
|
133
|
+
const AbstractType = { $type: "AbstractType" };
|
|
134
|
+
function isAbstractType(e) {
|
|
135
|
+
return reflection.isInstance(e, AbstractType.$type);
|
|
136
|
+
}
|
|
137
|
+
const Action = {
|
|
138
|
+
$type: "Action",
|
|
139
|
+
cardinality: "cardinality",
|
|
140
|
+
feature: "feature",
|
|
141
|
+
inferredType: "inferredType",
|
|
142
|
+
operator: "operator",
|
|
143
|
+
type: "type"
|
|
144
|
+
};
|
|
145
|
+
function isAction(e) {
|
|
146
|
+
return reflection.isInstance(e, Action.$type);
|
|
147
|
+
}
|
|
148
|
+
const Alternatives = {
|
|
149
|
+
$type: "Alternatives",
|
|
150
|
+
cardinality: "cardinality",
|
|
151
|
+
elements: "elements"
|
|
152
|
+
};
|
|
153
|
+
function isAlternatives(e) {
|
|
154
|
+
return reflection.isInstance(e, Alternatives.$type);
|
|
155
|
+
}
|
|
156
|
+
const ArrayLiteral = {
|
|
157
|
+
$type: "ArrayLiteral",
|
|
158
|
+
elements: "elements"
|
|
159
|
+
};
|
|
160
|
+
function isArrayLiteral(e) {
|
|
161
|
+
return reflection.isInstance(e, ArrayLiteral.$type);
|
|
162
|
+
}
|
|
163
|
+
const ArrayType = {
|
|
164
|
+
$type: "ArrayType",
|
|
165
|
+
elementType: "elementType"
|
|
166
|
+
};
|
|
167
|
+
function isArrayType(e) {
|
|
168
|
+
return reflection.isInstance(e, ArrayType.$type);
|
|
169
|
+
}
|
|
170
|
+
const Assignment = {
|
|
171
|
+
$type: "Assignment",
|
|
172
|
+
cardinality: "cardinality",
|
|
173
|
+
feature: "feature",
|
|
174
|
+
operator: "operator",
|
|
175
|
+
predicate: "predicate",
|
|
176
|
+
terminal: "terminal"
|
|
177
|
+
};
|
|
178
|
+
function isAssignment(e) {
|
|
179
|
+
return reflection.isInstance(e, Assignment.$type);
|
|
180
|
+
}
|
|
181
|
+
const BooleanLiteral = {
|
|
182
|
+
$type: "BooleanLiteral",
|
|
183
|
+
true: "true"
|
|
184
|
+
};
|
|
185
|
+
function isBooleanLiteral(e) {
|
|
186
|
+
return reflection.isInstance(e, BooleanLiteral.$type);
|
|
187
|
+
}
|
|
188
|
+
const CharacterRange = {
|
|
189
|
+
$type: "CharacterRange",
|
|
190
|
+
cardinality: "cardinality",
|
|
191
|
+
left: "left",
|
|
192
|
+
lookahead: "lookahead",
|
|
193
|
+
parenthesized: "parenthesized",
|
|
194
|
+
right: "right"
|
|
195
|
+
};
|
|
196
|
+
function isCharacterRange(e) {
|
|
197
|
+
return reflection.isInstance(e, CharacterRange.$type);
|
|
198
|
+
}
|
|
199
|
+
const Condition = { $type: "Condition" };
|
|
200
|
+
function isCondition(e) {
|
|
201
|
+
return reflection.isInstance(e, Condition.$type);
|
|
202
|
+
}
|
|
203
|
+
const Conjunction = {
|
|
204
|
+
$type: "Conjunction",
|
|
205
|
+
left: "left",
|
|
206
|
+
right: "right"
|
|
207
|
+
};
|
|
208
|
+
function isConjunction(e) {
|
|
209
|
+
return reflection.isInstance(e, Conjunction.$type);
|
|
210
|
+
}
|
|
211
|
+
const CrossReference = {
|
|
212
|
+
$type: "CrossReference",
|
|
213
|
+
cardinality: "cardinality",
|
|
214
|
+
deprecatedSyntax: "deprecatedSyntax",
|
|
215
|
+
isMulti: "isMulti",
|
|
216
|
+
terminal: "terminal",
|
|
217
|
+
type: "type"
|
|
218
|
+
};
|
|
219
|
+
function isCrossReference(e) {
|
|
220
|
+
return reflection.isInstance(e, CrossReference.$type);
|
|
221
|
+
}
|
|
222
|
+
const Disjunction = {
|
|
223
|
+
$type: "Disjunction",
|
|
224
|
+
left: "left",
|
|
225
|
+
right: "right"
|
|
226
|
+
};
|
|
227
|
+
function isDisjunction(e) {
|
|
228
|
+
return reflection.isInstance(e, Disjunction.$type);
|
|
229
|
+
}
|
|
230
|
+
const EndOfFile = {
|
|
231
|
+
$type: "EndOfFile",
|
|
232
|
+
cardinality: "cardinality"
|
|
233
|
+
};
|
|
234
|
+
function isEndOfFile(e) {
|
|
235
|
+
return reflection.isInstance(e, EndOfFile.$type);
|
|
236
|
+
}
|
|
237
|
+
const Grammar = {
|
|
238
|
+
$type: "Grammar",
|
|
239
|
+
imports: "imports",
|
|
240
|
+
interfaces: "interfaces",
|
|
241
|
+
isDeclared: "isDeclared",
|
|
242
|
+
name: "name",
|
|
243
|
+
rules: "rules",
|
|
244
|
+
types: "types"
|
|
245
|
+
};
|
|
246
|
+
function isGrammar(e) {
|
|
247
|
+
return reflection.isInstance(e, Grammar.$type);
|
|
248
|
+
}
|
|
249
|
+
const GrammarImport = {
|
|
250
|
+
$type: "GrammarImport",
|
|
251
|
+
path: "path"
|
|
252
|
+
};
|
|
253
|
+
function isGrammarImport(e) {
|
|
254
|
+
return reflection.isInstance(e, GrammarImport.$type);
|
|
255
|
+
}
|
|
256
|
+
const Group = {
|
|
257
|
+
$type: "Group",
|
|
258
|
+
cardinality: "cardinality",
|
|
259
|
+
elements: "elements",
|
|
260
|
+
guardCondition: "guardCondition",
|
|
261
|
+
predicate: "predicate"
|
|
262
|
+
};
|
|
263
|
+
function isGroup(e) {
|
|
264
|
+
return reflection.isInstance(e, Group.$type);
|
|
265
|
+
}
|
|
266
|
+
const InferredType = {
|
|
267
|
+
$type: "InferredType",
|
|
268
|
+
name: "name"
|
|
269
|
+
};
|
|
270
|
+
function isInferredType(e) {
|
|
271
|
+
return reflection.isInstance(e, InferredType.$type);
|
|
272
|
+
}
|
|
273
|
+
const InfixRule = {
|
|
274
|
+
$type: "InfixRule",
|
|
275
|
+
call: "call",
|
|
276
|
+
dataType: "dataType",
|
|
277
|
+
inferredType: "inferredType",
|
|
278
|
+
name: "name",
|
|
279
|
+
operators: "operators",
|
|
280
|
+
parameters: "parameters",
|
|
281
|
+
returnType: "returnType"
|
|
282
|
+
};
|
|
283
|
+
function isInfixRule(e) {
|
|
284
|
+
return reflection.isInstance(e, InfixRule.$type);
|
|
285
|
+
}
|
|
286
|
+
const InfixRuleOperatorList = {
|
|
287
|
+
$type: "InfixRuleOperatorList",
|
|
288
|
+
associativity: "associativity",
|
|
289
|
+
operators: "operators"
|
|
290
|
+
};
|
|
291
|
+
function isInfixRuleOperatorList(e) {
|
|
292
|
+
return reflection.isInstance(e, InfixRuleOperatorList.$type);
|
|
293
|
+
}
|
|
294
|
+
const InfixRuleOperators = {
|
|
295
|
+
$type: "InfixRuleOperators",
|
|
296
|
+
precedences: "precedences"
|
|
297
|
+
};
|
|
298
|
+
function isInfixRuleOperators(e) {
|
|
299
|
+
return reflection.isInstance(e, InfixRuleOperators.$type);
|
|
300
|
+
}
|
|
301
|
+
const Interface = {
|
|
302
|
+
$type: "Interface",
|
|
303
|
+
attributes: "attributes",
|
|
304
|
+
name: "name",
|
|
305
|
+
superTypes: "superTypes"
|
|
306
|
+
};
|
|
307
|
+
function isInterface(e) {
|
|
308
|
+
return reflection.isInstance(e, Interface.$type);
|
|
309
|
+
}
|
|
310
|
+
const Keyword = {
|
|
311
|
+
$type: "Keyword",
|
|
312
|
+
cardinality: "cardinality",
|
|
313
|
+
predicate: "predicate",
|
|
314
|
+
value: "value"
|
|
315
|
+
};
|
|
316
|
+
function isKeyword(e) {
|
|
317
|
+
return reflection.isInstance(e, Keyword.$type);
|
|
318
|
+
}
|
|
319
|
+
const NamedArgument = {
|
|
320
|
+
$type: "NamedArgument",
|
|
321
|
+
calledByName: "calledByName",
|
|
322
|
+
parameter: "parameter",
|
|
323
|
+
value: "value"
|
|
324
|
+
};
|
|
325
|
+
function isNamedArgument(e) {
|
|
326
|
+
return reflection.isInstance(e, NamedArgument.$type);
|
|
327
|
+
}
|
|
328
|
+
const NegatedToken = {
|
|
329
|
+
$type: "NegatedToken",
|
|
330
|
+
cardinality: "cardinality",
|
|
331
|
+
lookahead: "lookahead",
|
|
332
|
+
parenthesized: "parenthesized",
|
|
333
|
+
terminal: "terminal"
|
|
334
|
+
};
|
|
335
|
+
function isNegatedToken(e) {
|
|
336
|
+
return reflection.isInstance(e, NegatedToken.$type);
|
|
337
|
+
}
|
|
338
|
+
const Negation = {
|
|
339
|
+
$type: "Negation",
|
|
340
|
+
value: "value"
|
|
341
|
+
};
|
|
342
|
+
function isNegation(e) {
|
|
343
|
+
return reflection.isInstance(e, Negation.$type);
|
|
344
|
+
}
|
|
345
|
+
const NumberLiteral = {
|
|
346
|
+
$type: "NumberLiteral",
|
|
347
|
+
value: "value"
|
|
348
|
+
};
|
|
349
|
+
function isNumberLiteral(e) {
|
|
350
|
+
return reflection.isInstance(e, NumberLiteral.$type);
|
|
351
|
+
}
|
|
352
|
+
const Parameter = {
|
|
353
|
+
$type: "Parameter",
|
|
354
|
+
name: "name"
|
|
355
|
+
};
|
|
356
|
+
function isParameter(e) {
|
|
357
|
+
return reflection.isInstance(e, Parameter.$type);
|
|
358
|
+
}
|
|
359
|
+
const ParameterReference = {
|
|
360
|
+
$type: "ParameterReference",
|
|
361
|
+
parameter: "parameter"
|
|
362
|
+
};
|
|
363
|
+
function isParameterReference(e) {
|
|
364
|
+
return reflection.isInstance(e, ParameterReference.$type);
|
|
365
|
+
}
|
|
366
|
+
const ParserRule = {
|
|
367
|
+
$type: "ParserRule",
|
|
368
|
+
dataType: "dataType",
|
|
369
|
+
definition: "definition",
|
|
370
|
+
entry: "entry",
|
|
371
|
+
fragment: "fragment",
|
|
372
|
+
inferredType: "inferredType",
|
|
373
|
+
name: "name",
|
|
374
|
+
parameters: "parameters",
|
|
375
|
+
returnType: "returnType"
|
|
376
|
+
};
|
|
377
|
+
function isParserRule(e) {
|
|
378
|
+
return reflection.isInstance(e, ParserRule.$type);
|
|
379
|
+
}
|
|
380
|
+
const ReferenceType = {
|
|
381
|
+
$type: "ReferenceType",
|
|
382
|
+
isMulti: "isMulti",
|
|
383
|
+
referenceType: "referenceType"
|
|
384
|
+
};
|
|
385
|
+
function isReferenceType(e) {
|
|
386
|
+
return reflection.isInstance(e, ReferenceType.$type);
|
|
387
|
+
}
|
|
388
|
+
const RegexToken = {
|
|
389
|
+
$type: "RegexToken",
|
|
390
|
+
cardinality: "cardinality",
|
|
391
|
+
lookahead: "lookahead",
|
|
392
|
+
parenthesized: "parenthesized",
|
|
393
|
+
regex: "regex"
|
|
394
|
+
};
|
|
395
|
+
function isRegexToken(e) {
|
|
396
|
+
return reflection.isInstance(e, RegexToken.$type);
|
|
397
|
+
}
|
|
398
|
+
const ReturnType = {
|
|
399
|
+
$type: "ReturnType",
|
|
400
|
+
name: "name"
|
|
401
|
+
};
|
|
402
|
+
function isReturnType(e) {
|
|
403
|
+
return reflection.isInstance(e, ReturnType.$type);
|
|
404
|
+
}
|
|
405
|
+
const RuleCall = {
|
|
406
|
+
$type: "RuleCall",
|
|
407
|
+
arguments: "arguments",
|
|
408
|
+
cardinality: "cardinality",
|
|
409
|
+
predicate: "predicate",
|
|
410
|
+
rule: "rule"
|
|
411
|
+
};
|
|
412
|
+
function isRuleCall(e) {
|
|
413
|
+
return reflection.isInstance(e, RuleCall.$type);
|
|
414
|
+
}
|
|
415
|
+
const SimpleType = {
|
|
416
|
+
$type: "SimpleType",
|
|
417
|
+
primitiveType: "primitiveType",
|
|
418
|
+
stringType: "stringType",
|
|
419
|
+
typeRef: "typeRef"
|
|
420
|
+
};
|
|
421
|
+
function isSimpleType(e) {
|
|
422
|
+
return reflection.isInstance(e, SimpleType.$type);
|
|
423
|
+
}
|
|
424
|
+
const StringLiteral = {
|
|
425
|
+
$type: "StringLiteral",
|
|
426
|
+
value: "value"
|
|
427
|
+
};
|
|
428
|
+
function isStringLiteral(e) {
|
|
429
|
+
return reflection.isInstance(e, StringLiteral.$type);
|
|
430
|
+
}
|
|
431
|
+
const TerminalAlternatives = {
|
|
432
|
+
$type: "TerminalAlternatives",
|
|
433
|
+
cardinality: "cardinality",
|
|
434
|
+
elements: "elements",
|
|
435
|
+
lookahead: "lookahead",
|
|
436
|
+
parenthesized: "parenthesized"
|
|
437
|
+
};
|
|
438
|
+
function isTerminalAlternatives(e) {
|
|
439
|
+
return reflection.isInstance(e, TerminalAlternatives.$type);
|
|
440
|
+
}
|
|
441
|
+
const TerminalElement = {
|
|
442
|
+
$type: "TerminalElement",
|
|
443
|
+
cardinality: "cardinality",
|
|
444
|
+
lookahead: "lookahead",
|
|
445
|
+
parenthesized: "parenthesized"
|
|
446
|
+
};
|
|
447
|
+
function isTerminalElement(e) {
|
|
448
|
+
return reflection.isInstance(e, TerminalElement.$type);
|
|
449
|
+
}
|
|
450
|
+
const TerminalGroup = {
|
|
451
|
+
$type: "TerminalGroup",
|
|
452
|
+
cardinality: "cardinality",
|
|
453
|
+
elements: "elements",
|
|
454
|
+
lookahead: "lookahead",
|
|
455
|
+
parenthesized: "parenthesized"
|
|
456
|
+
};
|
|
457
|
+
function isTerminalGroup(e) {
|
|
458
|
+
return reflection.isInstance(e, TerminalGroup.$type);
|
|
459
|
+
}
|
|
460
|
+
const TerminalRule = {
|
|
461
|
+
$type: "TerminalRule",
|
|
462
|
+
definition: "definition",
|
|
463
|
+
fragment: "fragment",
|
|
464
|
+
hidden: "hidden",
|
|
465
|
+
name: "name",
|
|
466
|
+
type: "type"
|
|
467
|
+
};
|
|
468
|
+
function isTerminalRule(e) {
|
|
469
|
+
return reflection.isInstance(e, TerminalRule.$type);
|
|
470
|
+
}
|
|
471
|
+
const TerminalRuleCall = {
|
|
472
|
+
$type: "TerminalRuleCall",
|
|
473
|
+
cardinality: "cardinality",
|
|
474
|
+
lookahead: "lookahead",
|
|
475
|
+
parenthesized: "parenthesized",
|
|
476
|
+
rule: "rule"
|
|
477
|
+
};
|
|
478
|
+
function isTerminalRuleCall(e) {
|
|
479
|
+
return reflection.isInstance(e, TerminalRuleCall.$type);
|
|
480
|
+
}
|
|
481
|
+
const Type = {
|
|
482
|
+
$type: "Type",
|
|
483
|
+
name: "name",
|
|
484
|
+
type: "type"
|
|
485
|
+
};
|
|
486
|
+
function isType(e) {
|
|
487
|
+
return reflection.isInstance(e, Type.$type);
|
|
488
|
+
}
|
|
489
|
+
const TypeAttribute = {
|
|
490
|
+
$type: "TypeAttribute",
|
|
491
|
+
defaultValue: "defaultValue",
|
|
492
|
+
isOptional: "isOptional",
|
|
493
|
+
name: "name",
|
|
494
|
+
type: "type"
|
|
495
|
+
};
|
|
496
|
+
function isTypeAttribute(e) {
|
|
497
|
+
return reflection.isInstance(e, TypeAttribute.$type);
|
|
498
|
+
}
|
|
499
|
+
const TypeDefinition = { $type: "TypeDefinition" };
|
|
500
|
+
function isTypeDefinition(e) {
|
|
501
|
+
return reflection.isInstance(e, TypeDefinition.$type);
|
|
502
|
+
}
|
|
503
|
+
const UnionType = {
|
|
504
|
+
$type: "UnionType",
|
|
505
|
+
types: "types"
|
|
506
|
+
};
|
|
507
|
+
function isUnionType(e) {
|
|
508
|
+
return reflection.isInstance(e, UnionType.$type);
|
|
509
|
+
}
|
|
510
|
+
const UnorderedGroup = {
|
|
511
|
+
$type: "UnorderedGroup",
|
|
512
|
+
cardinality: "cardinality",
|
|
513
|
+
elements: "elements"
|
|
514
|
+
};
|
|
515
|
+
function isUnorderedGroup(e) {
|
|
516
|
+
return reflection.isInstance(e, UnorderedGroup.$type);
|
|
517
|
+
}
|
|
518
|
+
const UntilToken = {
|
|
519
|
+
$type: "UntilToken",
|
|
520
|
+
cardinality: "cardinality",
|
|
521
|
+
lookahead: "lookahead",
|
|
522
|
+
parenthesized: "parenthesized",
|
|
523
|
+
terminal: "terminal"
|
|
524
|
+
};
|
|
525
|
+
function isUntilToken(e) {
|
|
526
|
+
return reflection.isInstance(e, UntilToken.$type);
|
|
527
|
+
}
|
|
528
|
+
const ValueLiteral = { $type: "ValueLiteral" };
|
|
529
|
+
function isValueLiteral(e) {
|
|
530
|
+
return reflection.isInstance(e, ValueLiteral.$type);
|
|
531
|
+
}
|
|
532
|
+
const Wildcard = {
|
|
533
|
+
$type: "Wildcard",
|
|
534
|
+
cardinality: "cardinality",
|
|
535
|
+
lookahead: "lookahead",
|
|
536
|
+
parenthesized: "parenthesized"
|
|
537
|
+
};
|
|
538
|
+
function isWildcard(e) {
|
|
539
|
+
return reflection.isInstance(e, Wildcard.$type);
|
|
540
|
+
}
|
|
541
|
+
var LangiumGrammarAstReflection = class extends AbstractAstReflection {
|
|
542
|
+
constructor() {
|
|
543
|
+
super(...arguments), this.types = {
|
|
544
|
+
AbstractElement: {
|
|
545
|
+
name: AbstractElement.$type,
|
|
546
|
+
properties: { cardinality: { name: AbstractElement.cardinality } },
|
|
547
|
+
superTypes: []
|
|
548
|
+
},
|
|
549
|
+
AbstractParserRule: {
|
|
550
|
+
name: AbstractParserRule.$type,
|
|
551
|
+
properties: {},
|
|
552
|
+
superTypes: [AbstractRule.$type, AbstractType.$type]
|
|
553
|
+
},
|
|
554
|
+
AbstractRule: {
|
|
555
|
+
name: AbstractRule.$type,
|
|
556
|
+
properties: {},
|
|
557
|
+
superTypes: []
|
|
558
|
+
},
|
|
559
|
+
AbstractType: {
|
|
560
|
+
name: AbstractType.$type,
|
|
561
|
+
properties: {},
|
|
562
|
+
superTypes: []
|
|
563
|
+
},
|
|
564
|
+
Action: {
|
|
565
|
+
name: Action.$type,
|
|
566
|
+
properties: {
|
|
567
|
+
cardinality: { name: Action.cardinality },
|
|
568
|
+
feature: { name: Action.feature },
|
|
569
|
+
inferredType: { name: Action.inferredType },
|
|
570
|
+
operator: { name: Action.operator },
|
|
571
|
+
type: {
|
|
572
|
+
name: Action.type,
|
|
573
|
+
referenceType: AbstractType.$type
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
superTypes: [AbstractElement.$type]
|
|
577
|
+
},
|
|
578
|
+
Alternatives: {
|
|
579
|
+
name: Alternatives.$type,
|
|
580
|
+
properties: {
|
|
581
|
+
cardinality: { name: Alternatives.cardinality },
|
|
582
|
+
elements: {
|
|
583
|
+
name: Alternatives.elements,
|
|
584
|
+
defaultValue: []
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
superTypes: [AbstractElement.$type]
|
|
588
|
+
},
|
|
589
|
+
ArrayLiteral: {
|
|
590
|
+
name: ArrayLiteral.$type,
|
|
591
|
+
properties: { elements: {
|
|
592
|
+
name: ArrayLiteral.elements,
|
|
593
|
+
defaultValue: []
|
|
594
|
+
} },
|
|
595
|
+
superTypes: [ValueLiteral.$type]
|
|
596
|
+
},
|
|
597
|
+
ArrayType: {
|
|
598
|
+
name: ArrayType.$type,
|
|
599
|
+
properties: { elementType: { name: ArrayType.elementType } },
|
|
600
|
+
superTypes: [TypeDefinition.$type]
|
|
601
|
+
},
|
|
602
|
+
Assignment: {
|
|
603
|
+
name: Assignment.$type,
|
|
604
|
+
properties: {
|
|
605
|
+
cardinality: { name: Assignment.cardinality },
|
|
606
|
+
feature: { name: Assignment.feature },
|
|
607
|
+
operator: { name: Assignment.operator },
|
|
608
|
+
predicate: { name: Assignment.predicate },
|
|
609
|
+
terminal: { name: Assignment.terminal }
|
|
610
|
+
},
|
|
611
|
+
superTypes: [AbstractElement.$type]
|
|
612
|
+
},
|
|
613
|
+
BooleanLiteral: {
|
|
614
|
+
name: BooleanLiteral.$type,
|
|
615
|
+
properties: { true: {
|
|
616
|
+
name: BooleanLiteral.true,
|
|
617
|
+
defaultValue: !1
|
|
618
|
+
} },
|
|
619
|
+
superTypes: [Condition.$type, ValueLiteral.$type]
|
|
620
|
+
},
|
|
621
|
+
CharacterRange: {
|
|
622
|
+
name: CharacterRange.$type,
|
|
623
|
+
properties: {
|
|
624
|
+
cardinality: { name: CharacterRange.cardinality },
|
|
625
|
+
left: { name: CharacterRange.left },
|
|
626
|
+
lookahead: { name: CharacterRange.lookahead },
|
|
627
|
+
parenthesized: {
|
|
628
|
+
name: CharacterRange.parenthesized,
|
|
629
|
+
defaultValue: !1
|
|
630
|
+
},
|
|
631
|
+
right: { name: CharacterRange.right }
|
|
632
|
+
},
|
|
633
|
+
superTypes: [TerminalElement.$type]
|
|
634
|
+
},
|
|
635
|
+
Condition: {
|
|
636
|
+
name: Condition.$type,
|
|
637
|
+
properties: {},
|
|
638
|
+
superTypes: []
|
|
639
|
+
},
|
|
640
|
+
Conjunction: {
|
|
641
|
+
name: Conjunction.$type,
|
|
642
|
+
properties: {
|
|
643
|
+
left: { name: Conjunction.left },
|
|
644
|
+
right: { name: Conjunction.right }
|
|
645
|
+
},
|
|
646
|
+
superTypes: [Condition.$type]
|
|
647
|
+
},
|
|
648
|
+
CrossReference: {
|
|
649
|
+
name: CrossReference.$type,
|
|
650
|
+
properties: {
|
|
651
|
+
cardinality: { name: CrossReference.cardinality },
|
|
652
|
+
deprecatedSyntax: {
|
|
653
|
+
name: CrossReference.deprecatedSyntax,
|
|
654
|
+
defaultValue: !1
|
|
655
|
+
},
|
|
656
|
+
isMulti: {
|
|
657
|
+
name: CrossReference.isMulti,
|
|
658
|
+
defaultValue: !1
|
|
659
|
+
},
|
|
660
|
+
terminal: { name: CrossReference.terminal },
|
|
661
|
+
type: {
|
|
662
|
+
name: CrossReference.type,
|
|
663
|
+
referenceType: AbstractType.$type
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
superTypes: [AbstractElement.$type]
|
|
667
|
+
},
|
|
668
|
+
Disjunction: {
|
|
669
|
+
name: Disjunction.$type,
|
|
670
|
+
properties: {
|
|
671
|
+
left: { name: Disjunction.left },
|
|
672
|
+
right: { name: Disjunction.right }
|
|
673
|
+
},
|
|
674
|
+
superTypes: [Condition.$type]
|
|
675
|
+
},
|
|
676
|
+
EndOfFile: {
|
|
677
|
+
name: EndOfFile.$type,
|
|
678
|
+
properties: { cardinality: { name: EndOfFile.cardinality } },
|
|
679
|
+
superTypes: [AbstractElement.$type]
|
|
680
|
+
},
|
|
681
|
+
Grammar: {
|
|
682
|
+
name: Grammar.$type,
|
|
683
|
+
properties: {
|
|
684
|
+
imports: {
|
|
685
|
+
name: Grammar.imports,
|
|
686
|
+
defaultValue: []
|
|
687
|
+
},
|
|
688
|
+
interfaces: {
|
|
689
|
+
name: Grammar.interfaces,
|
|
690
|
+
defaultValue: []
|
|
691
|
+
},
|
|
692
|
+
isDeclared: {
|
|
693
|
+
name: Grammar.isDeclared,
|
|
694
|
+
defaultValue: !1
|
|
695
|
+
},
|
|
696
|
+
name: { name: Grammar.name },
|
|
697
|
+
rules: {
|
|
698
|
+
name: Grammar.rules,
|
|
699
|
+
defaultValue: []
|
|
700
|
+
},
|
|
701
|
+
types: {
|
|
702
|
+
name: Grammar.types,
|
|
703
|
+
defaultValue: []
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
superTypes: []
|
|
707
|
+
},
|
|
708
|
+
GrammarImport: {
|
|
709
|
+
name: GrammarImport.$type,
|
|
710
|
+
properties: { path: { name: GrammarImport.path } },
|
|
711
|
+
superTypes: []
|
|
712
|
+
},
|
|
713
|
+
Group: {
|
|
714
|
+
name: Group.$type,
|
|
715
|
+
properties: {
|
|
716
|
+
cardinality: { name: Group.cardinality },
|
|
717
|
+
elements: {
|
|
718
|
+
name: Group.elements,
|
|
719
|
+
defaultValue: []
|
|
720
|
+
},
|
|
721
|
+
guardCondition: { name: Group.guardCondition },
|
|
722
|
+
predicate: { name: Group.predicate }
|
|
723
|
+
},
|
|
724
|
+
superTypes: [AbstractElement.$type]
|
|
725
|
+
},
|
|
726
|
+
InferredType: {
|
|
727
|
+
name: InferredType.$type,
|
|
728
|
+
properties: { name: { name: InferredType.name } },
|
|
729
|
+
superTypes: [AbstractType.$type]
|
|
730
|
+
},
|
|
731
|
+
InfixRule: {
|
|
732
|
+
name: InfixRule.$type,
|
|
733
|
+
properties: {
|
|
734
|
+
call: { name: InfixRule.call },
|
|
735
|
+
dataType: { name: InfixRule.dataType },
|
|
736
|
+
inferredType: { name: InfixRule.inferredType },
|
|
737
|
+
name: { name: InfixRule.name },
|
|
738
|
+
operators: { name: InfixRule.operators },
|
|
739
|
+
parameters: {
|
|
740
|
+
name: InfixRule.parameters,
|
|
741
|
+
defaultValue: []
|
|
742
|
+
},
|
|
743
|
+
returnType: {
|
|
744
|
+
name: InfixRule.returnType,
|
|
745
|
+
referenceType: AbstractType.$type
|
|
746
|
+
}
|
|
747
|
+
},
|
|
748
|
+
superTypes: [AbstractParserRule.$type]
|
|
749
|
+
},
|
|
750
|
+
InfixRuleOperatorList: {
|
|
751
|
+
name: InfixRuleOperatorList.$type,
|
|
752
|
+
properties: {
|
|
753
|
+
associativity: { name: InfixRuleOperatorList.associativity },
|
|
754
|
+
operators: {
|
|
755
|
+
name: InfixRuleOperatorList.operators,
|
|
756
|
+
defaultValue: []
|
|
757
|
+
}
|
|
758
|
+
},
|
|
759
|
+
superTypes: []
|
|
760
|
+
},
|
|
761
|
+
InfixRuleOperators: {
|
|
762
|
+
name: InfixRuleOperators.$type,
|
|
763
|
+
properties: { precedences: {
|
|
764
|
+
name: InfixRuleOperators.precedences,
|
|
765
|
+
defaultValue: []
|
|
766
|
+
} },
|
|
767
|
+
superTypes: []
|
|
768
|
+
},
|
|
769
|
+
Interface: {
|
|
770
|
+
name: Interface.$type,
|
|
771
|
+
properties: {
|
|
772
|
+
attributes: {
|
|
773
|
+
name: Interface.attributes,
|
|
774
|
+
defaultValue: []
|
|
775
|
+
},
|
|
776
|
+
name: { name: Interface.name },
|
|
777
|
+
superTypes: {
|
|
778
|
+
name: Interface.superTypes,
|
|
779
|
+
defaultValue: [],
|
|
780
|
+
referenceType: AbstractType.$type
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
superTypes: [AbstractType.$type]
|
|
784
|
+
},
|
|
785
|
+
Keyword: {
|
|
786
|
+
name: Keyword.$type,
|
|
787
|
+
properties: {
|
|
788
|
+
cardinality: { name: Keyword.cardinality },
|
|
789
|
+
predicate: { name: Keyword.predicate },
|
|
790
|
+
value: { name: Keyword.value }
|
|
791
|
+
},
|
|
792
|
+
superTypes: [AbstractElement.$type]
|
|
793
|
+
},
|
|
794
|
+
NamedArgument: {
|
|
795
|
+
name: NamedArgument.$type,
|
|
796
|
+
properties: {
|
|
797
|
+
calledByName: {
|
|
798
|
+
name: NamedArgument.calledByName,
|
|
799
|
+
defaultValue: !1
|
|
800
|
+
},
|
|
801
|
+
parameter: {
|
|
802
|
+
name: NamedArgument.parameter,
|
|
803
|
+
referenceType: Parameter.$type
|
|
804
|
+
},
|
|
805
|
+
value: { name: NamedArgument.value }
|
|
806
|
+
},
|
|
807
|
+
superTypes: []
|
|
808
|
+
},
|
|
809
|
+
NegatedToken: {
|
|
810
|
+
name: NegatedToken.$type,
|
|
811
|
+
properties: {
|
|
812
|
+
cardinality: { name: NegatedToken.cardinality },
|
|
813
|
+
lookahead: { name: NegatedToken.lookahead },
|
|
814
|
+
parenthesized: {
|
|
815
|
+
name: NegatedToken.parenthesized,
|
|
816
|
+
defaultValue: !1
|
|
817
|
+
},
|
|
818
|
+
terminal: { name: NegatedToken.terminal }
|
|
819
|
+
},
|
|
820
|
+
superTypes: [TerminalElement.$type]
|
|
821
|
+
},
|
|
822
|
+
Negation: {
|
|
823
|
+
name: Negation.$type,
|
|
824
|
+
properties: { value: { name: Negation.value } },
|
|
825
|
+
superTypes: [Condition.$type]
|
|
826
|
+
},
|
|
827
|
+
NumberLiteral: {
|
|
828
|
+
name: NumberLiteral.$type,
|
|
829
|
+
properties: { value: { name: NumberLiteral.value } },
|
|
830
|
+
superTypes: [ValueLiteral.$type]
|
|
831
|
+
},
|
|
832
|
+
Parameter: {
|
|
833
|
+
name: Parameter.$type,
|
|
834
|
+
properties: { name: { name: Parameter.name } },
|
|
835
|
+
superTypes: []
|
|
836
|
+
},
|
|
837
|
+
ParameterReference: {
|
|
838
|
+
name: ParameterReference.$type,
|
|
839
|
+
properties: { parameter: {
|
|
840
|
+
name: ParameterReference.parameter,
|
|
841
|
+
referenceType: Parameter.$type
|
|
842
|
+
} },
|
|
843
|
+
superTypes: [Condition.$type]
|
|
844
|
+
},
|
|
845
|
+
ParserRule: {
|
|
846
|
+
name: ParserRule.$type,
|
|
847
|
+
properties: {
|
|
848
|
+
dataType: { name: ParserRule.dataType },
|
|
849
|
+
definition: { name: ParserRule.definition },
|
|
850
|
+
entry: {
|
|
851
|
+
name: ParserRule.entry,
|
|
852
|
+
defaultValue: !1
|
|
853
|
+
},
|
|
854
|
+
fragment: {
|
|
855
|
+
name: ParserRule.fragment,
|
|
856
|
+
defaultValue: !1
|
|
857
|
+
},
|
|
858
|
+
inferredType: { name: ParserRule.inferredType },
|
|
859
|
+
name: { name: ParserRule.name },
|
|
860
|
+
parameters: {
|
|
861
|
+
name: ParserRule.parameters,
|
|
862
|
+
defaultValue: []
|
|
863
|
+
},
|
|
864
|
+
returnType: {
|
|
865
|
+
name: ParserRule.returnType,
|
|
866
|
+
referenceType: AbstractType.$type
|
|
867
|
+
}
|
|
868
|
+
},
|
|
869
|
+
superTypes: [AbstractParserRule.$type]
|
|
870
|
+
},
|
|
871
|
+
ReferenceType: {
|
|
872
|
+
name: ReferenceType.$type,
|
|
873
|
+
properties: {
|
|
874
|
+
isMulti: {
|
|
875
|
+
name: ReferenceType.isMulti,
|
|
876
|
+
defaultValue: !1
|
|
877
|
+
},
|
|
878
|
+
referenceType: { name: ReferenceType.referenceType }
|
|
879
|
+
},
|
|
880
|
+
superTypes: [TypeDefinition.$type]
|
|
881
|
+
},
|
|
882
|
+
RegexToken: {
|
|
883
|
+
name: RegexToken.$type,
|
|
884
|
+
properties: {
|
|
885
|
+
cardinality: { name: RegexToken.cardinality },
|
|
886
|
+
lookahead: { name: RegexToken.lookahead },
|
|
887
|
+
parenthesized: {
|
|
888
|
+
name: RegexToken.parenthesized,
|
|
889
|
+
defaultValue: !1
|
|
890
|
+
},
|
|
891
|
+
regex: { name: RegexToken.regex }
|
|
892
|
+
},
|
|
893
|
+
superTypes: [TerminalElement.$type]
|
|
894
|
+
},
|
|
895
|
+
ReturnType: {
|
|
896
|
+
name: ReturnType.$type,
|
|
897
|
+
properties: { name: { name: ReturnType.name } },
|
|
898
|
+
superTypes: []
|
|
899
|
+
},
|
|
900
|
+
RuleCall: {
|
|
901
|
+
name: RuleCall.$type,
|
|
902
|
+
properties: {
|
|
903
|
+
arguments: {
|
|
904
|
+
name: RuleCall.arguments,
|
|
905
|
+
defaultValue: []
|
|
906
|
+
},
|
|
907
|
+
cardinality: { name: RuleCall.cardinality },
|
|
908
|
+
predicate: { name: RuleCall.predicate },
|
|
909
|
+
rule: {
|
|
910
|
+
name: RuleCall.rule,
|
|
911
|
+
referenceType: AbstractRule.$type
|
|
912
|
+
}
|
|
913
|
+
},
|
|
914
|
+
superTypes: [AbstractElement.$type]
|
|
915
|
+
},
|
|
916
|
+
SimpleType: {
|
|
917
|
+
name: SimpleType.$type,
|
|
918
|
+
properties: {
|
|
919
|
+
primitiveType: { name: SimpleType.primitiveType },
|
|
920
|
+
stringType: { name: SimpleType.stringType },
|
|
921
|
+
typeRef: {
|
|
922
|
+
name: SimpleType.typeRef,
|
|
923
|
+
referenceType: AbstractType.$type
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
superTypes: [TypeDefinition.$type]
|
|
927
|
+
},
|
|
928
|
+
StringLiteral: {
|
|
929
|
+
name: StringLiteral.$type,
|
|
930
|
+
properties: { value: { name: StringLiteral.value } },
|
|
931
|
+
superTypes: [ValueLiteral.$type]
|
|
932
|
+
},
|
|
933
|
+
TerminalAlternatives: {
|
|
934
|
+
name: TerminalAlternatives.$type,
|
|
935
|
+
properties: {
|
|
936
|
+
cardinality: { name: TerminalAlternatives.cardinality },
|
|
937
|
+
elements: {
|
|
938
|
+
name: TerminalAlternatives.elements,
|
|
939
|
+
defaultValue: []
|
|
940
|
+
},
|
|
941
|
+
lookahead: { name: TerminalAlternatives.lookahead },
|
|
942
|
+
parenthesized: {
|
|
943
|
+
name: TerminalAlternatives.parenthesized,
|
|
944
|
+
defaultValue: !1
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
superTypes: [TerminalElement.$type]
|
|
948
|
+
},
|
|
949
|
+
TerminalElement: {
|
|
950
|
+
name: TerminalElement.$type,
|
|
951
|
+
properties: {
|
|
952
|
+
cardinality: { name: TerminalElement.cardinality },
|
|
953
|
+
lookahead: { name: TerminalElement.lookahead },
|
|
954
|
+
parenthesized: {
|
|
955
|
+
name: TerminalElement.parenthesized,
|
|
956
|
+
defaultValue: !1
|
|
957
|
+
}
|
|
958
|
+
},
|
|
959
|
+
superTypes: [AbstractElement.$type]
|
|
960
|
+
},
|
|
961
|
+
TerminalGroup: {
|
|
962
|
+
name: TerminalGroup.$type,
|
|
963
|
+
properties: {
|
|
964
|
+
cardinality: { name: TerminalGroup.cardinality },
|
|
965
|
+
elements: {
|
|
966
|
+
name: TerminalGroup.elements,
|
|
967
|
+
defaultValue: []
|
|
968
|
+
},
|
|
969
|
+
lookahead: { name: TerminalGroup.lookahead },
|
|
970
|
+
parenthesized: {
|
|
971
|
+
name: TerminalGroup.parenthesized,
|
|
972
|
+
defaultValue: !1
|
|
973
|
+
}
|
|
974
|
+
},
|
|
975
|
+
superTypes: [TerminalElement.$type]
|
|
976
|
+
},
|
|
977
|
+
TerminalRule: {
|
|
978
|
+
name: TerminalRule.$type,
|
|
979
|
+
properties: {
|
|
980
|
+
definition: { name: TerminalRule.definition },
|
|
981
|
+
fragment: {
|
|
982
|
+
name: TerminalRule.fragment,
|
|
983
|
+
defaultValue: !1
|
|
984
|
+
},
|
|
985
|
+
hidden: {
|
|
986
|
+
name: TerminalRule.hidden,
|
|
987
|
+
defaultValue: !1
|
|
988
|
+
},
|
|
989
|
+
name: { name: TerminalRule.name },
|
|
990
|
+
type: { name: TerminalRule.type }
|
|
991
|
+
},
|
|
992
|
+
superTypes: [AbstractRule.$type]
|
|
993
|
+
},
|
|
994
|
+
TerminalRuleCall: {
|
|
995
|
+
name: TerminalRuleCall.$type,
|
|
996
|
+
properties: {
|
|
997
|
+
cardinality: { name: TerminalRuleCall.cardinality },
|
|
998
|
+
lookahead: { name: TerminalRuleCall.lookahead },
|
|
999
|
+
parenthesized: {
|
|
1000
|
+
name: TerminalRuleCall.parenthesized,
|
|
1001
|
+
defaultValue: !1
|
|
1002
|
+
},
|
|
1003
|
+
rule: {
|
|
1004
|
+
name: TerminalRuleCall.rule,
|
|
1005
|
+
referenceType: TerminalRule.$type
|
|
1006
|
+
}
|
|
1007
|
+
},
|
|
1008
|
+
superTypes: [TerminalElement.$type]
|
|
1009
|
+
},
|
|
1010
|
+
Type: {
|
|
1011
|
+
name: Type.$type,
|
|
1012
|
+
properties: {
|
|
1013
|
+
name: { name: Type.name },
|
|
1014
|
+
type: { name: Type.type }
|
|
1015
|
+
},
|
|
1016
|
+
superTypes: [AbstractType.$type]
|
|
1017
|
+
},
|
|
1018
|
+
TypeAttribute: {
|
|
1019
|
+
name: TypeAttribute.$type,
|
|
1020
|
+
properties: {
|
|
1021
|
+
defaultValue: { name: TypeAttribute.defaultValue },
|
|
1022
|
+
isOptional: {
|
|
1023
|
+
name: TypeAttribute.isOptional,
|
|
1024
|
+
defaultValue: !1
|
|
1025
|
+
},
|
|
1026
|
+
name: { name: TypeAttribute.name },
|
|
1027
|
+
type: { name: TypeAttribute.type }
|
|
1028
|
+
},
|
|
1029
|
+
superTypes: []
|
|
1030
|
+
},
|
|
1031
|
+
TypeDefinition: {
|
|
1032
|
+
name: TypeDefinition.$type,
|
|
1033
|
+
properties: {},
|
|
1034
|
+
superTypes: []
|
|
1035
|
+
},
|
|
1036
|
+
UnionType: {
|
|
1037
|
+
name: UnionType.$type,
|
|
1038
|
+
properties: { types: {
|
|
1039
|
+
name: UnionType.types,
|
|
1040
|
+
defaultValue: []
|
|
1041
|
+
} },
|
|
1042
|
+
superTypes: [TypeDefinition.$type]
|
|
1043
|
+
},
|
|
1044
|
+
UnorderedGroup: {
|
|
1045
|
+
name: UnorderedGroup.$type,
|
|
1046
|
+
properties: {
|
|
1047
|
+
cardinality: { name: UnorderedGroup.cardinality },
|
|
1048
|
+
elements: {
|
|
1049
|
+
name: UnorderedGroup.elements,
|
|
1050
|
+
defaultValue: []
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
superTypes: [AbstractElement.$type]
|
|
1054
|
+
},
|
|
1055
|
+
UntilToken: {
|
|
1056
|
+
name: UntilToken.$type,
|
|
1057
|
+
properties: {
|
|
1058
|
+
cardinality: { name: UntilToken.cardinality },
|
|
1059
|
+
lookahead: { name: UntilToken.lookahead },
|
|
1060
|
+
parenthesized: {
|
|
1061
|
+
name: UntilToken.parenthesized,
|
|
1062
|
+
defaultValue: !1
|
|
1063
|
+
},
|
|
1064
|
+
terminal: { name: UntilToken.terminal }
|
|
1065
|
+
},
|
|
1066
|
+
superTypes: [TerminalElement.$type]
|
|
1067
|
+
},
|
|
1068
|
+
ValueLiteral: {
|
|
1069
|
+
name: ValueLiteral.$type,
|
|
1070
|
+
properties: {},
|
|
1071
|
+
superTypes: []
|
|
1072
|
+
},
|
|
1073
|
+
Wildcard: {
|
|
1074
|
+
name: Wildcard.$type,
|
|
1075
|
+
properties: {
|
|
1076
|
+
cardinality: { name: Wildcard.cardinality },
|
|
1077
|
+
lookahead: { name: Wildcard.lookahead },
|
|
1078
|
+
parenthesized: {
|
|
1079
|
+
name: Wildcard.parenthesized,
|
|
1080
|
+
defaultValue: !1
|
|
1081
|
+
}
|
|
1082
|
+
},
|
|
1083
|
+
superTypes: [TerminalElement.$type]
|
|
1084
|
+
}
|
|
1085
|
+
};
|
|
1086
|
+
}
|
|
1087
|
+
};
|
|
1088
|
+
const reflection = new LangiumGrammarAstReflection();
|
|
1089
|
+
export { LangiumGrammarAstReflection, ast_exports, isAbstractElement, isAbstractParserRule, isAction, isAlternatives, isArrayType, isAssignment, isBooleanLiteral, isCharacterRange, isConjunction, isCrossReference, isDisjunction, isEndOfFile, isGroup, isInferredType, isInfixRule, isInterface, isKeyword, isNegatedToken, isNegation, isParameterReference, isParserRule, isReferenceType, isRegexToken, isReturnType, isRuleCall, isSimpleType, isTerminalAlternatives, isTerminalGroup, isTerminalRule, isTerminalRuleCall, isType, isUnionType, isUnorderedGroup, isUntilToken, isWildcard };
|