@alloy-js/core 0.23.0-dev.9 → 0.24.0-dev.1
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/CHANGELOG.md +34 -0
- package/api-extractor.json +1 -8
- package/api-extractor.testing.json +19 -0
- package/dist/dev/src/binder.js +595 -0
- package/dist/dev/src/binder.js.map +1 -0
- package/dist/dev/src/code.js +181 -0
- package/dist/dev/src/code.js.map +1 -0
- package/dist/dev/src/components/AccessExpression.js +230 -0
- package/dist/dev/src/components/AccessExpression.js.map +1 -0
- package/dist/dev/src/components/AccessExpression.test.js +237 -0
- package/dist/dev/src/components/AccessExpression.test.js.map +1 -0
- package/dist/dev/src/components/AppendFile.js +246 -0
- package/dist/dev/src/components/AppendFile.js.map +1 -0
- package/dist/dev/src/components/Block.js +78 -0
- package/dist/dev/src/components/Block.js.map +1 -0
- package/dist/dev/src/components/CopyFile.js +16 -0
- package/dist/dev/src/components/CopyFile.js.map +1 -0
- package/dist/dev/src/components/Declaration.js +70 -0
- package/dist/dev/src/components/Declaration.js.map +1 -0
- package/dist/dev/src/components/For.js +40 -0
- package/dist/dev/src/components/For.js.map +1 -0
- package/dist/dev/src/components/Indent.js +37 -0
- package/dist/dev/src/components/Indent.js.map +1 -0
- package/dist/dev/src/components/List.js +29 -0
- package/dist/dev/src/components/List.js.map +1 -0
- package/dist/dev/src/components/MemberDeclaration.js +70 -0
- package/dist/dev/src/components/MemberDeclaration.js.map +1 -0
- package/dist/dev/src/components/MemberName.js +18 -0
- package/dist/dev/src/components/MemberName.js.map +1 -0
- package/dist/dev/src/components/MemberScope.js +62 -0
- package/dist/dev/src/components/MemberScope.js.map +1 -0
- package/dist/dev/src/components/Name.js +11 -0
- package/dist/dev/src/components/Name.js.map +1 -0
- package/dist/dev/src/components/Output.js +72 -0
- package/dist/dev/src/components/Output.js.map +1 -0
- package/dist/dev/src/components/Prose.js +32 -0
- package/dist/dev/src/components/Prose.js.map +1 -0
- package/dist/dev/src/components/ReferenceOrContent.js +12 -0
- package/dist/dev/src/components/ReferenceOrContent.js.map +1 -0
- package/dist/dev/src/components/Scope.js +56 -0
- package/dist/dev/src/components/Scope.js.map +1 -0
- package/dist/dev/src/components/Show.js +4 -0
- package/dist/dev/src/components/Show.js.map +1 -0
- package/dist/dev/src/components/SourceDirectory.js +41 -0
- package/dist/dev/src/components/SourceDirectory.js.map +1 -0
- package/dist/dev/src/components/SourceFile.js +52 -0
- package/dist/dev/src/components/SourceFile.js.map +1 -0
- package/dist/dev/src/components/StatementList.js +20 -0
- package/dist/dev/src/components/StatementList.js.map +1 -0
- package/dist/dev/src/components/Switch.js +42 -0
- package/dist/dev/src/components/Switch.js.map +1 -0
- package/dist/dev/src/components/TemplateFile.js +153 -0
- package/dist/dev/src/components/TemplateFile.js.map +1 -0
- package/dist/dev/src/components/UpdateFile.js +71 -0
- package/dist/dev/src/components/UpdateFile.js.map +1 -0
- package/dist/dev/src/components/Wrap.js +18 -0
- package/dist/dev/src/components/Wrap.js.map +1 -0
- package/dist/dev/src/components/index.js +25 -0
- package/dist/dev/src/components/index.js.map +1 -0
- package/dist/dev/src/components/stc/index.js +27 -0
- package/dist/dev/src/components/stc/index.js.map +1 -0
- package/dist/dev/src/components/stc/sti.js +10 -0
- package/dist/dev/src/components/stc/sti.js.map +1 -0
- package/dist/dev/src/content-slot.js +78 -0
- package/dist/dev/src/content-slot.js.map +1 -0
- package/dist/dev/src/content-slot.test.js +89 -0
- package/dist/dev/src/content-slot.test.js.map +1 -0
- package/dist/dev/src/context/assignment.js +46 -0
- package/dist/dev/src/context/assignment.js.map +1 -0
- package/dist/dev/src/context/binder.js +17 -0
- package/dist/dev/src/context/binder.js.map +1 -0
- package/dist/dev/src/context/declaration.js +3 -0
- package/dist/dev/src/context/declaration.js.map +1 -0
- package/dist/dev/src/context/format-options.js +45 -0
- package/dist/dev/src/context/format-options.js.map +1 -0
- package/dist/dev/src/context/index.js +11 -0
- package/dist/dev/src/context/index.js.map +1 -0
- package/dist/dev/src/context/member-declaration.js +11 -0
- package/dist/dev/src/context/member-declaration.js.map +1 -0
- package/dist/dev/src/context/member-scope.js +12 -0
- package/dist/dev/src/context/member-scope.js.map +1 -0
- package/dist/dev/src/context/name-policy.js +13 -0
- package/dist/dev/src/context/name-policy.js.map +1 -0
- package/dist/dev/src/context/scope.js +18 -0
- package/dist/dev/src/context/scope.js.map +1 -0
- package/dist/dev/src/context/source-directory.js +12 -0
- package/dist/dev/src/context/source-directory.js.map +1 -0
- package/dist/dev/src/context/source-file.js +3 -0
- package/dist/dev/src/context/source-file.js.map +1 -0
- package/dist/dev/src/context.js +47 -0
- package/dist/dev/src/context.js.map +1 -0
- package/dist/dev/src/debug/cli.js +164 -0
- package/dist/dev/src/debug/cli.js.map +1 -0
- package/dist/dev/src/debug/diagnostics-broadcast.test.js +100 -0
- package/dist/dev/src/debug/diagnostics-broadcast.test.js.map +1 -0
- package/dist/dev/src/debug/diagnostics.test.js +50 -0
- package/dist/dev/src/debug/diagnostics.test.js.map +1 -0
- package/dist/dev/src/debug/effects.js +293 -0
- package/dist/dev/src/debug/effects.js.map +1 -0
- package/dist/dev/src/debug/effects.test.js +280 -0
- package/dist/dev/src/debug/effects.test.js.map +1 -0
- package/dist/dev/src/debug/files.js +29 -0
- package/dist/dev/src/debug/files.js.map +1 -0
- package/dist/dev/src/debug/files.test.js +78 -0
- package/dist/dev/src/debug/files.test.js.map +1 -0
- package/dist/dev/src/debug/index.js +71 -0
- package/dist/dev/src/debug/index.js.map +1 -0
- package/dist/dev/src/debug/message-format.test.js +836 -0
- package/dist/dev/src/debug/message-format.test.js.map +1 -0
- package/dist/dev/src/debug/render-tree-orphans.test.js +365 -0
- package/dist/dev/src/debug/render-tree-orphans.test.js.map +1 -0
- package/dist/dev/src/debug/render.js +479 -0
- package/dist/dev/src/debug/render.js.map +1 -0
- package/dist/dev/src/debug/render.test.js +363 -0
- package/dist/dev/src/debug/render.test.js.map +1 -0
- package/dist/dev/src/debug/serialize.js +70 -0
- package/dist/dev/src/debug/serialize.js.map +1 -0
- package/dist/dev/src/debug/source-map.browser.js +24 -0
- package/dist/dev/src/debug/source-map.browser.js.map +1 -0
- package/dist/dev/src/debug/source-map.js +111 -0
- package/dist/dev/src/debug/source-map.js.map +1 -0
- package/dist/dev/src/debug/symbols.js +196 -0
- package/dist/dev/src/debug/symbols.js.map +1 -0
- package/dist/dev/src/debug/symbols.test.js +93 -0
- package/dist/dev/src/debug/symbols.test.js.map +1 -0
- package/dist/dev/src/debug/trace-writer.js +674 -0
- package/dist/dev/src/debug/trace-writer.js.map +1 -0
- package/dist/dev/src/debug/trace.js +460 -0
- package/dist/dev/src/debug/trace.js.map +1 -0
- package/dist/dev/src/devtools/devtools-protocol.js +2 -0
- package/dist/dev/src/devtools/devtools-protocol.js.map +1 -0
- package/dist/dev/src/devtools/devtools-server.browser.js +36 -0
- package/dist/dev/src/devtools/devtools-server.browser.js.map +1 -0
- package/dist/dev/src/devtools/devtools-server.js +458 -0
- package/dist/dev/src/devtools/devtools-server.js.map +1 -0
- package/dist/dev/src/devtools/devtools-transport.js +114 -0
- package/dist/dev/src/devtools/devtools-transport.js.map +1 -0
- package/dist/dev/src/devtools-entry.browser.js +2 -0
- package/dist/dev/src/devtools-entry.browser.js.map +1 -0
- package/dist/dev/src/devtools-entry.js +2 -0
- package/dist/dev/src/devtools-entry.js.map +1 -0
- package/dist/dev/src/diagnostics.js +97 -0
- package/dist/dev/src/diagnostics.js.map +1 -0
- package/dist/dev/src/host/alloy-host.browser.js +32 -0
- package/dist/dev/src/host/alloy-host.browser.js.map +1 -0
- package/dist/dev/src/host/alloy-host.js +144 -0
- package/dist/dev/src/host/alloy-host.js.map +1 -0
- package/dist/dev/src/host/interface.js +2 -0
- package/dist/dev/src/host/interface.js.map +1 -0
- package/dist/dev/src/host/node-host.browser.js +21 -0
- package/dist/dev/src/host/node-host.browser.js.map +1 -0
- package/dist/dev/src/host/node-host.js +20 -0
- package/dist/dev/src/host/node-host.js.map +1 -0
- package/dist/dev/src/index.browser.js +3 -0
- package/dist/dev/src/index.browser.js.map +1 -0
- package/dist/dev/src/index.js +27 -0
- package/dist/dev/src/index.js.map +1 -0
- package/dist/dev/src/inspect.browser.js +6 -0
- package/dist/dev/src/inspect.browser.js.map +1 -0
- package/dist/dev/src/inspect.js +2 -0
- package/dist/dev/src/inspect.js.map +1 -0
- package/dist/dev/src/jsx-runtime.js +17 -0
- package/dist/dev/src/jsx-runtime.js.map +1 -0
- package/dist/dev/src/library-symbol-reference.js +59 -0
- package/dist/dev/src/library-symbol-reference.js.map +1 -0
- package/dist/dev/src/name-policy.js +51 -0
- package/dist/dev/src/name-policy.js.map +1 -0
- package/dist/dev/src/pretty-string/pretty-string.js +100 -0
- package/dist/dev/src/pretty-string/pretty-string.js.map +1 -0
- package/dist/dev/src/pretty-string/pretty-string.test.js +38 -0
- package/dist/dev/src/pretty-string/pretty-string.test.js.map +1 -0
- package/dist/dev/src/print-hook.js +10 -0
- package/dist/dev/src/print-hook.js.map +1 -0
- package/dist/dev/src/props-combinators.js +109 -0
- package/dist/dev/src/props-combinators.js.map +1 -0
- package/dist/dev/src/reactive-union-set.js +213 -0
- package/dist/dev/src/reactive-union-set.js.map +1 -0
- package/dist/dev/src/reactivity.js +452 -0
- package/dist/dev/src/reactivity.js.map +1 -0
- package/dist/dev/src/refkey.js +167 -0
- package/dist/dev/src/refkey.js.map +1 -0
- package/dist/dev/src/render-stack.js +252 -0
- package/dist/dev/src/render-stack.js.map +1 -0
- package/dist/dev/src/render.js +872 -0
- package/dist/dev/src/render.js.map +1 -0
- package/dist/dev/src/resource.js +124 -0
- package/dist/dev/src/resource.js.map +1 -0
- package/dist/dev/src/runtime/component.js +41 -0
- package/dist/dev/src/runtime/component.js.map +1 -0
- package/dist/dev/src/runtime/intrinsic.js +12 -0
- package/dist/dev/src/runtime/intrinsic.js.map +1 -0
- package/dist/dev/src/scheduler.js +217 -0
- package/dist/dev/src/scheduler.js.map +1 -0
- package/dist/dev/src/stc.js +40 -0
- package/dist/dev/src/stc.js.map +1 -0
- package/dist/dev/src/sti.js +31 -0
- package/dist/dev/src/sti.js.map +1 -0
- package/dist/dev/src/symbols/basic-scope.js +21 -0
- package/dist/dev/src/symbols/basic-scope.js.map +1 -0
- package/dist/dev/src/symbols/basic-symbol.js +34 -0
- package/dist/dev/src/symbols/basic-symbol.js.map +1 -0
- package/dist/dev/src/symbols/decl.js +26 -0
- package/dist/dev/src/symbols/decl.js.map +1 -0
- package/dist/dev/src/symbols/index.js +10 -0
- package/dist/dev/src/symbols/index.js.map +1 -0
- package/dist/dev/src/symbols/output-scope.js +235 -0
- package/dist/dev/src/symbols/output-scope.js.map +1 -0
- package/dist/dev/src/symbols/output-space.js +51 -0
- package/dist/dev/src/symbols/output-space.js.map +1 -0
- package/dist/dev/src/symbols/output-symbol.js +644 -0
- package/dist/dev/src/symbols/output-symbol.js.map +1 -0
- package/dist/dev/src/symbols/symbol-flow.js +106 -0
- package/dist/dev/src/symbols/symbol-flow.js.map +1 -0
- package/dist/dev/src/symbols/symbol-slot.js +75 -0
- package/dist/dev/src/symbols/symbol-slot.js.map +1 -0
- package/dist/dev/src/symbols/symbol-slot.test.js +68 -0
- package/dist/dev/src/symbols/symbol-slot.test.js.map +1 -0
- package/dist/dev/src/symbols/symbol-table.js +103 -0
- package/dist/dev/src/symbols/symbol-table.js.map +1 -0
- package/dist/dev/src/tap.js +109 -0
- package/dist/dev/src/tap.js.map +1 -0
- package/dist/dev/src/trace.js +2 -0
- package/dist/dev/src/trace.js.map +1 -0
- package/dist/dev/src/tracer.js +180 -0
- package/dist/dev/src/tracer.js.map +1 -0
- package/dist/dev/src/utils.js +487 -0
- package/dist/dev/src/utils.js.map +1 -0
- package/dist/dev/src/write-output.js +48 -0
- package/dist/dev/src/write-output.js.map +1 -0
- package/dist/dev/test/browser-build.test.js +85 -0
- package/dist/dev/test/browser-build.test.js.map +1 -0
- package/dist/dev/test/children.test.js +44 -0
- package/dist/dev/test/children.test.js.map +1 -0
- package/dist/dev/test/components/append-file.test.js +394 -0
- package/dist/dev/test/components/append-file.test.js.map +1 -0
- package/dist/dev/test/components/block.test.js +83 -0
- package/dist/dev/test/components/block.test.js.map +1 -0
- package/dist/dev/test/components/copy-file.test.js +119 -0
- package/dist/dev/test/components/copy-file.test.js.map +1 -0
- package/dist/dev/test/components/declaration.test.js +40 -0
- package/dist/dev/test/components/declaration.test.js.map +1 -0
- package/dist/dev/test/components/list.test.js +250 -0
- package/dist/dev/test/components/list.test.js.map +1 -0
- package/dist/dev/test/components/prose.test.js +42 -0
- package/dist/dev/test/components/prose.test.js.map +1 -0
- package/dist/dev/test/components/reference-or-content.test.js +246 -0
- package/dist/dev/test/components/reference-or-content.test.js.map +1 -0
- package/dist/dev/test/components/source-file.test.js +271 -0
- package/dist/dev/test/components/source-file.test.js.map +1 -0
- package/dist/dev/test/components/template-file.test.js +200 -0
- package/dist/dev/test/components/template-file.test.js.map +1 -0
- package/dist/dev/test/components/update-file.test.js +210 -0
- package/dist/dev/test/components/update-file.test.js.map +1 -0
- package/dist/dev/test/components/wrap.test.js +48 -0
- package/dist/dev/test/components/wrap.test.js.map +1 -0
- package/dist/dev/test/control-flow/for.test.js +318 -0
- package/dist/dev/test/control-flow/for.test.js.map +1 -0
- package/dist/dev/test/control-flow/match.test.js +112 -0
- package/dist/dev/test/control-flow/match.test.js.map +1 -0
- package/dist/dev/test/control-flow/show.test.js +38 -0
- package/dist/dev/test/control-flow/show.test.js.map +1 -0
- package/dist/dev/test/lazy-isempty.test.js +121 -0
- package/dist/dev/test/lazy-isempty.test.js.map +1 -0
- package/dist/dev/test/name-policy.test.js +28 -0
- package/dist/dev/test/name-policy.test.js.map +1 -0
- package/dist/dev/test/props-with-defaults.test.js +94 -0
- package/dist/dev/test/props-with-defaults.test.js.map +1 -0
- package/dist/dev/test/reactive-union-set-disposers.test.js +98 -0
- package/dist/dev/test/reactive-union-set-disposers.test.js.map +1 -0
- package/dist/dev/test/reactive-union-set.test.js +171 -0
- package/dist/dev/test/reactive-union-set.test.js.map +1 -0
- package/dist/dev/test/reactivity/circular-reactives.test.js +62 -0
- package/dist/dev/test/reactivity/circular-reactives.test.js.map +1 -0
- package/dist/dev/test/reactivity/cleanup.test.js +96 -0
- package/dist/dev/test/reactivity/cleanup.test.js.map +1 -0
- package/dist/dev/test/reactivity/memo.test.js +17 -0
- package/dist/dev/test/reactivity/memo.test.js.map +1 -0
- package/dist/dev/test/reactivity/ref-rendering.test.js +38 -0
- package/dist/dev/test/reactivity/ref-rendering.test.js.map +1 -0
- package/dist/dev/test/reactivity/shallow-reactive.test.js +56 -0
- package/dist/dev/test/reactivity/shallow-reactive.test.js.map +1 -0
- package/dist/dev/test/reactivity/test.test.js +74 -0
- package/dist/dev/test/reactivity/test.test.js.map +1 -0
- package/dist/dev/test/reactivity/untrack.test.js +27 -0
- package/dist/dev/test/reactivity/untrack.test.js.map +1 -0
- package/dist/dev/test/refkey.test.js +36 -0
- package/dist/dev/test/refkey.test.js.map +1 -0
- package/dist/dev/test/rendering/basic.test.js +194 -0
- package/dist/dev/test/rendering/basic.test.js.map +1 -0
- package/dist/dev/test/rendering/code.test.js +64 -0
- package/dist/dev/test/rendering/code.test.js.map +1 -0
- package/dist/dev/test/rendering/formatting.test.js +797 -0
- package/dist/dev/test/rendering/formatting.test.js.map +1 -0
- package/dist/dev/test/rendering/indent.test.js +183 -0
- package/dist/dev/test/rendering/indent.test.js.map +1 -0
- package/dist/dev/test/rendering/memoization.test.js +37 -0
- package/dist/dev/test/rendering/memoization.test.js.map +1 -0
- package/dist/dev/test/rendering/print-render-stack.test.js +287 -0
- package/dist/dev/test/rendering/print-render-stack.test.js.map +1 -0
- package/dist/dev/test/rendering/refkeys.test.js +37 -0
- package/dist/dev/test/rendering/refkeys.test.js.map +1 -0
- package/dist/dev/test/scheduler-extended.test.js +96 -0
- package/dist/dev/test/scheduler-extended.test.js.map +1 -0
- package/dist/dev/test/scheduler.test.js +46 -0
- package/dist/dev/test/scheduler.test.js.map +1 -0
- package/dist/dev/test/split-props.test.js +78 -0
- package/dist/dev/test/split-props.test.js.map +1 -0
- package/dist/dev/test/stc.test.js +35 -0
- package/dist/dev/test/stc.test.js.map +1 -0
- package/dist/dev/test/symbols/deconflicted-name.test.js +120 -0
- package/dist/dev/test/symbols/deconflicted-name.test.js.map +1 -0
- package/dist/dev/test/symbols/output-scope.test.js +221 -0
- package/dist/dev/test/symbols/output-scope.test.js.map +1 -0
- package/dist/dev/test/symbols/output-symbol.test.js +202 -0
- package/dist/dev/test/symbols/output-symbol.test.js.map +1 -0
- package/dist/dev/test/symbols/resolution.test.js +487 -0
- package/dist/dev/test/symbols/resolution.test.js.map +1 -0
- package/dist/dev/test/symbols/symbol-table.test.js +15 -0
- package/dist/dev/test/symbols/symbol-table.test.js.map +1 -0
- package/dist/dev/test/symbols/utils.js +26 -0
- package/dist/dev/test/symbols/utils.js.map +1 -0
- package/dist/dev/test/utils.test.js +317 -0
- package/dist/dev/test/utils.test.js.map +1 -0
- package/dist/dev/testing/create-test-wrapper.js +130 -0
- package/dist/dev/testing/create-test-wrapper.js.map +1 -0
- package/dist/dev/testing/devtools-utils.js +162 -0
- package/dist/dev/testing/devtools-utils.js.map +1 -0
- package/dist/dev/testing/extend-expect.js +187 -0
- package/dist/dev/testing/extend-expect.js.map +1 -0
- package/dist/dev/testing/extend-expect.test.js +234 -0
- package/dist/dev/testing/extend-expect.test.js.map +1 -0
- package/dist/dev/testing/index.js +4 -0
- package/dist/dev/testing/index.js.map +1 -0
- package/dist/dev/testing/render.js +34 -0
- package/dist/dev/testing/render.js.map +1 -0
- package/dist/dev/testing/vitest.d.js +14 -0
- package/dist/dev/testing/vitest.d.js.map +1 -0
- package/dist/devtools/index.html +29 -17
- package/dist/src/binder.d.ts +107 -3
- package/dist/src/binder.d.ts.map +1 -1
- package/dist/src/binder.js +113 -1
- package/dist/src/binder.js.map +1 -1
- package/dist/src/components/AccessExpression.d.ts +78 -0
- package/dist/src/components/AccessExpression.d.ts.map +1 -0
- package/dist/src/components/AccessExpression.js +218 -0
- package/dist/src/components/AccessExpression.js.map +1 -0
- package/dist/src/components/AccessExpression.test.d.ts +2 -0
- package/dist/src/components/AccessExpression.test.d.ts.map +1 -0
- package/dist/src/components/AccessExpression.test.js +137 -0
- package/dist/src/components/AccessExpression.test.js.map +1 -0
- package/dist/src/components/Block.d.ts +12 -0
- package/dist/src/components/Block.d.ts.map +1 -1
- package/dist/src/components/Block.js +12 -0
- package/dist/src/components/Block.js.map +1 -1
- package/dist/src/components/For.d.ts.map +1 -1
- package/dist/src/components/For.js +1 -1
- package/dist/src/components/For.js.map +1 -1
- package/dist/src/components/List.d.ts +11 -1
- package/dist/src/components/List.d.ts.map +1 -1
- package/dist/src/components/List.js +1 -1
- package/dist/src/components/List.js.map +1 -1
- package/dist/src/components/MemberDeclaration.d.ts +6 -6
- package/dist/src/components/MemberDeclaration.js +6 -6
- package/dist/src/components/MemberName.d.ts +6 -0
- package/dist/src/components/MemberName.d.ts.map +1 -1
- package/dist/src/components/MemberName.js +7 -0
- package/dist/src/components/MemberName.js.map +1 -1
- package/dist/src/components/MemberScope.d.ts +5 -0
- package/dist/src/components/MemberScope.d.ts.map +1 -1
- package/dist/src/components/MemberScope.js +5 -0
- package/dist/src/components/MemberScope.js.map +1 -1
- package/dist/src/components/Output.d.ts +4 -2
- package/dist/src/components/Output.d.ts.map +1 -1
- package/dist/src/components/Output.js.map +1 -1
- package/dist/src/components/Scope.d.ts +6 -0
- package/dist/src/components/Scope.d.ts.map +1 -1
- package/dist/src/components/Scope.js +6 -0
- package/dist/src/components/Scope.js.map +1 -1
- package/dist/src/components/SourceFile.d.ts +22 -2
- package/dist/src/components/SourceFile.d.ts.map +1 -1
- package/dist/src/components/SourceFile.js.map +1 -1
- package/dist/src/components/Switch.d.ts.map +1 -1
- package/dist/src/components/Switch.js +1 -1
- package/dist/src/components/Switch.js.map +1 -1
- package/dist/src/components/index.d.ts +1 -0
- package/dist/src/components/index.d.ts.map +1 -1
- package/dist/src/components/index.js +1 -0
- package/dist/src/components/index.js.map +1 -1
- package/dist/src/context/binder.d.ts +4 -0
- package/dist/src/context/binder.d.ts.map +1 -1
- package/dist/src/context/binder.js +5 -0
- package/dist/src/context/binder.js.map +1 -1
- package/dist/src/context/format-options.d.ts +14 -1
- package/dist/src/context/format-options.d.ts.map +1 -1
- package/dist/src/context/format-options.js +14 -1
- package/dist/src/context/format-options.js.map +1 -1
- package/dist/src/context/scope.d.ts +4 -0
- package/dist/src/context/scope.d.ts.map +1 -1
- package/dist/src/context/scope.js +5 -0
- package/dist/src/context/scope.js.map +1 -1
- package/dist/src/context/source-directory.d.ts +9 -0
- package/dist/src/context/source-directory.d.ts.map +1 -1
- package/dist/src/context/source-directory.js +9 -0
- package/dist/src/context/source-directory.js.map +1 -1
- package/dist/src/debug/cli.d.ts.map +1 -1
- package/dist/src/debug/cli.js +3 -2
- package/dist/src/debug/cli.js.map +1 -1
- package/dist/src/debug/diagnostics-broadcast.test.d.ts +2 -0
- package/dist/src/debug/diagnostics-broadcast.test.d.ts.map +1 -0
- package/dist/src/debug/diagnostics-broadcast.test.js +100 -0
- package/dist/src/debug/diagnostics-broadcast.test.js.map +1 -0
- package/dist/src/debug/diagnostics.test.js +3 -2
- package/dist/src/debug/diagnostics.test.js.map +1 -1
- package/dist/src/debug/effects.d.ts +12 -4
- package/dist/src/debug/effects.d.ts.map +1 -1
- package/dist/src/debug/effects.js +119 -54
- package/dist/src/debug/effects.js.map +1 -1
- package/dist/src/debug/effects.test.js +213 -41
- package/dist/src/debug/effects.test.js.map +1 -1
- package/dist/src/debug/files.d.ts.map +1 -1
- package/dist/src/debug/files.js +7 -18
- package/dist/src/debug/files.js.map +1 -1
- package/dist/src/debug/files.test.js +13 -36
- package/dist/src/debug/files.test.js.map +1 -1
- package/dist/src/debug/index.d.ts +4 -2
- package/dist/src/debug/index.d.ts.map +1 -1
- package/dist/src/debug/index.js +4 -2
- package/dist/src/debug/index.js.map +1 -1
- package/dist/src/debug/message-format.test.d.ts +2 -0
- package/dist/src/debug/message-format.test.d.ts.map +1 -0
- package/dist/src/debug/message-format.test.js +700 -0
- package/dist/src/debug/message-format.test.js.map +1 -0
- package/dist/src/debug/render-tree-orphans.test.d.ts +2 -0
- package/dist/src/debug/render-tree-orphans.test.d.ts.map +1 -0
- package/dist/src/debug/render-tree-orphans.test.js +297 -0
- package/dist/src/debug/render-tree-orphans.test.js.map +1 -0
- package/dist/src/debug/render.d.ts.map +1 -1
- package/dist/src/debug/render.js +91 -131
- package/dist/src/debug/render.js.map +1 -1
- package/dist/src/debug/render.test.js +91 -128
- package/dist/src/debug/render.test.js.map +1 -1
- package/dist/src/debug/source-map.browser.d.ts +16 -0
- package/dist/src/debug/source-map.browser.d.ts.map +1 -0
- package/dist/src/debug/source-map.browser.js +24 -0
- package/dist/src/debug/source-map.browser.js.map +1 -0
- package/dist/src/debug/source-map.d.ts +22 -0
- package/dist/src/debug/source-map.d.ts.map +1 -0
- package/dist/src/debug/source-map.js +111 -0
- package/dist/src/debug/source-map.js.map +1 -0
- package/dist/src/debug/symbols.d.ts +6 -5
- package/dist/src/debug/symbols.d.ts.map +1 -1
- package/dist/src/debug/symbols.js +46 -23
- package/dist/src/debug/symbols.js.map +1 -1
- package/dist/src/debug/symbols.test.js +15 -26
- package/dist/src/debug/symbols.test.js.map +1 -1
- package/dist/src/debug/trace-writer.d.ts +56 -0
- package/dist/src/debug/trace-writer.d.ts.map +1 -0
- package/dist/src/debug/trace-writer.js +674 -0
- package/dist/src/debug/trace-writer.js.map +1 -0
- package/dist/src/debug/trace.d.ts +10 -10
- package/dist/src/debug/trace.d.ts.map +1 -1
- package/dist/src/debug/trace.js +41 -24
- package/dist/src/debug/trace.js.map +1 -1
- package/dist/src/devtools/devtools-protocol.d.ts +318 -161
- package/dist/src/devtools/devtools-protocol.d.ts.map +1 -1
- package/dist/src/devtools/devtools-server.browser.d.ts +1 -5
- package/dist/src/devtools/devtools-server.browser.d.ts.map +1 -1
- package/dist/src/devtools/devtools-server.browser.js +3 -3
- package/dist/src/devtools/devtools-server.browser.js.map +1 -1
- package/dist/src/devtools/devtools-server.d.ts +5 -6
- package/dist/src/devtools/devtools-server.d.ts.map +1 -1
- package/dist/src/devtools/devtools-server.js +227 -25
- package/dist/src/devtools/devtools-server.js.map +1 -1
- package/dist/src/devtools/devtools-transport.d.ts +2 -2
- package/dist/src/devtools/devtools-transport.d.ts.map +1 -1
- package/dist/src/devtools/devtools-transport.js +2 -2
- package/dist/src/devtools/devtools-transport.js.map +1 -1
- package/dist/src/devtools-entry.browser.d.ts +1 -1
- package/dist/src/devtools-entry.browser.d.ts.map +1 -1
- package/dist/src/devtools-entry.browser.js.map +1 -1
- package/dist/src/devtools-entry.d.ts +1 -1
- package/dist/src/devtools-entry.d.ts.map +1 -1
- package/dist/src/devtools-entry.js.map +1 -1
- package/dist/src/diagnostics.d.ts +1 -1
- package/dist/src/diagnostics.d.ts.map +1 -1
- package/dist/src/diagnostics.js +27 -19
- package/dist/src/diagnostics.js.map +1 -1
- package/dist/src/host/node-host.browser.d.ts +11 -0
- package/dist/src/host/node-host.browser.d.ts.map +1 -0
- package/dist/src/host/node-host.browser.js +21 -0
- package/dist/src/host/node-host.browser.js.map +1 -0
- package/dist/src/host/node-host.d.ts +11 -0
- package/dist/src/host/node-host.d.ts.map +1 -0
- package/dist/src/host/node-host.js +20 -0
- package/dist/src/host/node-host.js.map +1 -0
- package/dist/src/library-symbol-reference.d.ts +52 -0
- package/dist/src/library-symbol-reference.d.ts.map +1 -1
- package/dist/src/library-symbol-reference.js +54 -0
- package/dist/src/library-symbol-reference.js.map +1 -1
- package/dist/src/name-policy.d.ts +30 -3
- package/dist/src/name-policy.d.ts.map +1 -1
- package/dist/src/name-policy.js +27 -0
- package/dist/src/name-policy.js.map +1 -1
- package/dist/src/reactivity.d.ts +28 -2
- package/dist/src/reactivity.d.ts.map +1 -1
- package/dist/src/reactivity.js +154 -45
- package/dist/src/reactivity.js.map +1 -1
- package/dist/src/render-stack.d.ts.map +1 -1
- package/dist/src/render-stack.js +4 -3
- package/dist/src/render-stack.js.map +1 -1
- package/dist/src/render.d.ts +2 -0
- package/dist/src/render.d.ts.map +1 -1
- package/dist/src/render.js +84 -30
- package/dist/src/render.js.map +1 -1
- package/dist/src/scheduler.d.ts +5 -0
- package/dist/src/scheduler.d.ts.map +1 -1
- package/dist/src/scheduler.js +94 -23
- package/dist/src/scheduler.js.map +1 -1
- package/dist/src/symbols/output-scope.d.ts +33 -1
- package/dist/src/symbols/output-scope.d.ts.map +1 -1
- package/dist/src/symbols/output-scope.js +34 -1
- package/dist/src/symbols/output-scope.js.map +1 -1
- package/dist/src/symbols/output-space.d.ts +12 -0
- package/dist/src/symbols/output-space.d.ts.map +1 -1
- package/dist/src/symbols/output-space.js +15 -0
- package/dist/src/symbols/output-space.js.map +1 -1
- package/dist/src/symbols/output-symbol.d.ts +128 -12
- package/dist/src/symbols/output-symbol.d.ts.map +1 -1
- package/dist/src/symbols/output-symbol.js +158 -18
- package/dist/src/symbols/output-symbol.js.map +1 -1
- package/dist/src/symbols/symbol-slot.d.ts.map +1 -1
- package/dist/src/symbols/symbol-slot.js +7 -0
- package/dist/src/symbols/symbol-slot.js.map +1 -1
- package/dist/src/symbols/symbol-slot.test.js +18 -1
- package/dist/src/symbols/symbol-slot.test.js.map +1 -1
- package/dist/src/symbols/symbol-table.d.ts.map +1 -1
- package/dist/src/symbols/symbol-table.js +13 -3
- package/dist/src/symbols/symbol-table.js.map +1 -1
- package/dist/src/utils.d.ts.map +1 -1
- package/dist/src/utils.js +11 -5
- package/dist/src/utils.js.map +1 -1
- package/dist/src/write-output.d.ts.map +1 -1
- package/dist/src/write-output.js +6 -5
- package/dist/src/write-output.js.map +1 -1
- package/dist/test/browser-build.test.js +66 -67
- package/dist/test/browser-build.test.js.map +1 -1
- package/dist/test/reactivity/shallow-reactive.test.js +4 -0
- package/dist/test/reactivity/shallow-reactive.test.js.map +1 -1
- package/dist/test/symbols/deconflicted-name.test.d.ts +2 -0
- package/dist/test/symbols/deconflicted-name.test.d.ts.map +1 -0
- package/dist/test/symbols/deconflicted-name.test.js +120 -0
- package/dist/test/symbols/deconflicted-name.test.js.map +1 -0
- package/dist/test/symbols/output-scope.test.js +41 -0
- package/dist/test/symbols/output-scope.test.js.map +1 -1
- package/dist/testing/create-test-wrapper.d.ts +75 -2
- package/dist/testing/create-test-wrapper.d.ts.map +1 -1
- package/dist/testing/create-test-wrapper.js +55 -1
- package/dist/testing/create-test-wrapper.js.map +1 -1
- package/dist/testing/devtools-utils.d.ts +12 -3
- package/dist/testing/devtools-utils.d.ts.map +1 -1
- package/dist/testing/devtools-utils.js +26 -4
- package/dist/testing/devtools-utils.js.map +1 -1
- package/dist/testing/extend-expect.d.ts +26 -0
- package/dist/testing/extend-expect.d.ts.map +1 -1
- package/dist/testing/extend-expect.js +20 -0
- package/dist/testing/extend-expect.js.map +1 -1
- package/dist/testing/index.d.ts +1 -1
- package/dist/testing/index.d.ts.map +1 -1
- package/dist/testing/index.js +1 -1
- package/dist/testing/index.js.map +1 -1
- package/dist/testing/render.d.ts +9 -0
- package/dist/testing/render.d.ts.map +1 -1
- package/dist/testing/render.js +11 -0
- package/dist/testing/render.js.map +1 -1
- package/dist/testing/vitest.d.js +12 -0
- package/dist/testing/vitest.d.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/docs/api/components/AppendRegion.md +83 -0
- package/docs/api/components/Block.md +49 -0
- package/docs/api/components/CopyFile.md +26 -0
- package/docs/api/components/Declaration.md +85 -0
- package/docs/api/components/For.md +91 -0
- package/docs/api/components/Indent.md +40 -0
- package/docs/api/components/List.md +68 -0
- package/docs/api/components/MemberDeclaration.md +89 -0
- package/docs/api/components/MemberName.md +21 -0
- package/docs/api/components/MemberScope.md +81 -0
- package/docs/api/components/Name.md +19 -0
- package/docs/api/components/Output.md +62 -0
- package/docs/api/components/Prose.md +29 -0
- package/docs/api/components/ReferenceOrContent.md +28 -0
- package/docs/api/components/Scope.md +83 -0
- package/docs/api/components/Show.md +32 -0
- package/docs/api/components/SourceDirectory.md +28 -0
- package/docs/api/components/SourceFile.md +60 -0
- package/docs/api/components/StatementList.md +29 -0
- package/docs/api/components/Switch.md +42 -0
- package/docs/api/components/TemplateFile.md +71 -0
- package/docs/api/components/TemplateVariable.md +57 -0
- package/docs/api/components/UpdateFile.md +56 -0
- package/docs/api/components/Wrap.md +40 -0
- package/docs/api/components/createAccessExpression.md +55 -0
- package/docs/api/components/index.md +27 -0
- package/docs/api/contexts/Assignment-context.md +43 -0
- package/docs/api/contexts/Binder-context.md +22 -0
- package/docs/api/contexts/Declaration-context.md +15 -0
- package/docs/api/contexts/Member-context.md +17 -0
- package/docs/api/contexts/MemberDeclaration-context.md +24 -0
- package/docs/api/contexts/NamePolicy-context.md +18 -0
- package/docs/api/contexts/Scope-context.md +20 -0
- package/docs/api/contexts/SourceDirectory-context.md +26 -0
- package/docs/api/contexts/SourceFile-context.md +19 -0
- package/docs/api/contexts/index.md +11 -0
- package/docs/api/functions/attachDiagnosticsCollector.md +18 -0
- package/docs/api/functions/baseListPropsToMapJoinArgs.md +20 -0
- package/docs/api/functions/children.md +27 -0
- package/docs/api/functions/childrenArray.md +25 -0
- package/docs/api/functions/code.md +25 -0
- package/docs/api/functions/computed.md +18 -0
- package/docs/api/functions/createComponent.md +20 -0
- package/docs/api/functions/createContentSlot.md +33 -0
- package/docs/api/functions/createContext.md +19 -0
- package/docs/api/functions/createCustomContext.md +18 -0
- package/docs/api/functions/createDeclarationTap.md +20 -0
- package/docs/api/functions/createFileResource.md +35 -0
- package/docs/api/functions/createFormatOptionsContextFor.md +28 -0
- package/docs/api/functions/createIntrinsic.md +19 -0
- package/docs/api/functions/createMemberTap.md +20 -0
- package/docs/api/functions/createNamePolicy.md +37 -0
- package/docs/api/functions/createNamedContext.md +19 -0
- package/docs/api/functions/createOutputBinder.md +24 -0
- package/docs/api/functions/createRenderTreeHook.md +19 -0
- package/docs/api/functions/createResource.md +77 -0
- package/docs/api/functions/createScope.md +35 -0
- package/docs/api/functions/createScopeTap.md +20 -0
- package/docs/api/functions/createSourceFileTap.md +20 -0
- package/docs/api/functions/createSymbol.md +25 -0
- package/docs/api/functions/createSymbolSlot.md +19 -0
- package/docs/api/functions/createTap.md +55 -0
- package/docs/api/functions/decl.md +20 -0
- package/docs/api/functions/defaultProps.md +21 -0
- package/docs/api/functions/effect.md +26 -0
- package/docs/api/functions/emitDiagnostic.md +18 -0
- package/docs/api/functions/emitSymbol.md +18 -0
- package/docs/api/functions/ensureIsEmpty.md +20 -0
- package/docs/api/functions/findCurrentEffectId.md +19 -0
- package/docs/api/functions/findKeyedChild.md +19 -0
- package/docs/api/functions/findKeyedChildren.md +19 -0
- package/docs/api/functions/findUnkeyedChildren.md +18 -0
- package/docs/api/functions/formatReactivePropertyLabel.md +21 -0
- package/docs/api/functions/getAssignmentSymbol.md +19 -0
- package/docs/api/functions/getContext.md +17 -0
- package/docs/api/functions/getContextForRenderNode.md +18 -0
- package/docs/api/functions/getDiagnosticsForTree.md +18 -0
- package/docs/api/functions/getEffectDebugId.md +18 -0
- package/docs/api/functions/getElementCache.md +17 -0
- package/docs/api/functions/getReactiveCreationLocation.md +18 -0
- package/docs/api/functions/getSymbolCreator.md +18 -0
- package/docs/api/functions/getSymbolCreatorSymbol.md +17 -0
- package/docs/api/functions/index.md +105 -0
- package/docs/api/functions/inspectRefkey.md +18 -0
- package/docs/api/functions/instantiateTakenMembersTo.md +20 -0
- package/docs/api/functions/isComponentCreator.md +19 -0
- package/docs/api/functions/isCustomContext.md +18 -0
- package/docs/api/functions/isIntrinsicElement.md +18 -0
- package/docs/api/functions/isKeyedChild.md +18 -0
- package/docs/api/functions/isLibrarySymbolReference.md +18 -0
- package/docs/api/functions/isMemberRefkey.md +18 -0
- package/docs/api/functions/isNamekey.md +18 -0
- package/docs/api/functions/isPrintHook.md +18 -0
- package/docs/api/functions/isRefkey.md +18 -0
- package/docs/api/functions/isRefkeyable.md +18 -0
- package/docs/api/functions/isRenderableObject.md +20 -0
- package/docs/api/functions/isSymbolRefkey.md +18 -0
- package/docs/api/functions/join.md +33 -0
- package/docs/api/functions/mapJoin.md +106 -0
- package/docs/api/functions/memberRefkey.md +27 -0
- package/docs/api/functions/memo.md +29 -0
- package/docs/api/functions/mergeProps.md +64 -0
- package/docs/api/functions/moveTakenMembersTo.md +18 -0
- package/docs/api/functions/namekey.md +41 -0
- package/docs/api/functions/nextReactiveId.md +19 -0
- package/docs/api/functions/notifyContentState.md +17 -0
- package/docs/api/functions/onCleanup.md +26 -0
- package/docs/api/functions/printTree.md +31 -0
- package/docs/api/functions/reactivePropertyRefId.md +21 -0
- package/docs/api/functions/ref.md +21 -0
- package/docs/api/functions/refId.md +18 -0
- package/docs/api/functions/refkey.md +24 -0
- package/docs/api/functions/render.md +31 -0
- package/docs/api/functions/renderAsync.md +31 -0
- package/docs/api/functions/renderTree.md +18 -0
- package/docs/api/functions/reportDiagnostics.md +18 -0
- package/docs/api/functions/resetRefIdCounter.md +17 -0
- package/docs/api/functions/resolve.md +31 -0
- package/docs/api/functions/root.md +25 -0
- package/docs/api/functions/shallowReactive.md +18 -0
- package/docs/api/functions/shallowRef.md +21 -0
- package/docs/api/functions/sourceFilesForTree.md +31 -0
- package/docs/api/functions/splitProps.md +19 -0
- package/docs/api/functions/stc.md +18 -0
- package/docs/api/functions/sti.md +18 -0
- package/docs/api/functions/symbolForRefkey.md +24 -0
- package/docs/api/functions/taggedComponent.md +19 -0
- package/docs/api/functions/takeSymbols.md +18 -0
- package/docs/api/functions/text.md +19 -0
- package/docs/api/functions/toRef.md +20 -0
- package/docs/api/functions/toRefkey.md +18 -0
- package/docs/api/functions/toRefs.md +20 -0
- package/docs/api/functions/traverseOutput.md +21 -0
- package/docs/api/functions/unresolvedRefkey.md +18 -0
- package/docs/api/functions/untrack.md +18 -0
- package/docs/api/functions/useContext.md +18 -0
- package/docs/api/functions/useFormatOptions.md +18 -0
- package/docs/api/functions/useMemberContext.md +17 -0
- package/docs/api/functions/useMemberScope.md +17 -0
- package/docs/api/functions/writeOutput.md +21 -0
- package/docs/api/index.md +9 -0
- package/docs/api/testing/functions/createTestWrapper.md +70 -0
- package/docs/api/testing/functions/d.md +21 -0
- package/docs/api/testing/functions/dedent.md +18 -0
- package/docs/api/testing/functions/index.md +6 -0
- package/docs/api/testing/functions/renderToString.md +20 -0
- package/docs/api/testing/index.md +4 -0
- package/docs/api/testing/types/TestWrapper.md +10 -0
- package/docs/api/testing/types/ToRenderToOptions.md +24 -0
- package/docs/api/testing/types/index.md +4 -0
- package/docs/api/types/AlignIntrinsicElement.md +5 -0
- package/docs/api/types/AppendRegionProps.md +5 -0
- package/docs/api/types/BaseListProps.md +21 -0
- package/docs/api/types/BasePartProps.md +10 -0
- package/docs/api/types/BasicScope.md +15 -0
- package/docs/api/types/BasicSymbol.md +18 -0
- package/docs/api/types/Binder.md +18 -0
- package/docs/api/types/BinderOptions.md +7 -0
- package/docs/api/types/BrIntrinsicElement.md +5 -0
- package/docs/api/types/BreakParentIntrinsicElement.md +5 -0
- package/docs/api/types/Child.md +5 -0
- package/docs/api/types/Children.md +5 -0
- package/docs/api/types/ChildrenOptions.md +7 -0
- package/docs/api/types/CommonFormatOptions.md +8 -0
- package/docs/api/types/Component.md +8 -0
- package/docs/api/types/ComponentContext.md +11 -0
- package/docs/api/types/ComponentCreator.md +11 -0
- package/docs/api/types/ComponentDefinition.md +7 -0
- package/docs/api/types/ContentOutputFile.md +10 -0
- package/docs/api/types/ContentSlot.md +12 -0
- package/docs/api/types/Context.md +19 -0
- package/docs/api/types/ContextProviderProps.md +8 -0
- package/docs/api/types/CopyFileContext.md +8 -0
- package/docs/api/types/CopyOutputFile.md +9 -0
- package/docs/api/types/CustomContext.md +10 -0
- package/docs/api/types/CustomContextChildrenCallback.md +5 -0
- package/docs/api/types/DeclarationProps.md +5 -0
- package/docs/api/types/DedentIntrinsicElement.md +5 -0
- package/docs/api/types/DedentToRootIntrinsicElement.md +5 -0
- package/docs/api/types/Diagnostic.md +11 -0
- package/docs/api/types/DiagnosticHandle.md +7 -0
- package/docs/api/types/DiagnosticInput.md +10 -0
- package/docs/api/types/DiagnosticSeverity.md +5 -0
- package/docs/api/types/DiagnosticStackEntry.md +9 -0
- package/docs/api/types/DiagnosticsCollector.md +8 -0
- package/docs/api/types/Disposable_2.md +7 -0
- package/docs/api/types/EffectDebugOptions.md +8 -0
- package/docs/api/types/EffectOptions.md +7 -0
- package/docs/api/types/ElementCache.md +5 -0
- package/docs/api/types/ElementCacheKey.md +5 -0
- package/docs/api/types/FillIntrinsicElement.md +5 -0
- package/docs/api/types/ForCallbackArgs.md +5 -0
- package/docs/api/types/ForSupportedCollections.md +5 -0
- package/docs/api/types/GroupIntrinsicElement.md +5 -0
- package/docs/api/types/HardlineIntrinsicElement.md +5 -0
- package/docs/api/types/HbrIntrinsicElement.md +5 -0
- package/docs/api/types/IfBreakIntrinsicElement.md +5 -0
- package/docs/api/types/IndentIfBreakIntrinsicElement.md +5 -0
- package/docs/api/types/IndentIntrinsicElement.md +5 -0
- package/docs/api/types/IntrinsicElement.md +5 -0
- package/docs/api/types/IntrinsicElementBase.md +9 -0
- package/docs/api/types/IntrinsicElements.md +26 -0
- package/docs/api/types/JoinOptions.md +9 -0
- package/docs/api/types/LbrIntrinsicElement.md +5 -0
- package/docs/api/types/LibrarySymbolReference.md +13 -0
- package/docs/api/types/LineIntrinsicElement.md +5 -0
- package/docs/api/types/LineSuffixBoundaryIntrinsicElement.md +5 -0
- package/docs/api/types/LineSuffixIntrinsicElement.md +5 -0
- package/docs/api/types/LiterallineIntrinsicElement.md +5 -0
- package/docs/api/types/MakeChildrenOptional.md +7 -0
- package/docs/api/types/MarkAsRootIntrinsicElement.md +5 -0
- package/docs/api/types/MatchProps.md +9 -0
- package/docs/api/types/MemberDeclarationProps.md +5 -0
- package/docs/api/types/MemberDescriptor.md +10 -0
- package/docs/api/types/MemberRefkey.md +10 -0
- package/docs/api/types/MemberResolutionContext.md +10 -0
- package/docs/api/types/MemberResolver.md +32 -0
- package/docs/api/types/MemberScopeProps.md +5 -0
- package/docs/api/types/Metadata.md +5 -0
- package/docs/api/types/NameConflictResolver.md +27 -0
- package/docs/api/types/NamePolicy.md +8 -0
- package/docs/api/types/NamePolicyGetter.md +9 -0
- package/docs/api/types/Namekey.md +10 -0
- package/docs/api/types/NamekeyOptions.md +8 -0
- package/docs/api/types/OnReactiveSetAddCallback.md +5 -0
- package/docs/api/types/OnReactiveSetDeleteCallback.md +5 -0
- package/docs/api/types/OutputDeclarationSpace.md +13 -0
- package/docs/api/types/OutputDirectory.md +59 -0
- package/docs/api/types/OutputFile.md +5 -0
- package/docs/api/types/OutputFileBase.md +8 -0
- package/docs/api/types/OutputMemberSpace.md +13 -0
- package/docs/api/types/OutputScope.md +33 -0
- package/docs/api/types/OutputScopeOptions.md +9 -0
- package/docs/api/types/OutputSpace.md +7 -0
- package/docs/api/types/OutputSymbol.md +78 -0
- package/docs/api/types/OutputSymbolOptions.md +16 -0
- package/docs/api/types/OutputVisitor.md +10 -0
- package/docs/api/types/PrintHook.md +10 -0
- package/docs/api/types/PrintTreeOptions.md +11 -0
- package/docs/api/types/Props.md +5 -0
- package/docs/api/types/ReactiveUnionSet.md +20 -0
- package/docs/api/types/ReactiveUnionSetOptions.md +8 -0
- package/docs/api/types/Refkey.md +5 -0
- package/docs/api/types/Refkeyable.md +5 -0
- package/docs/api/types/RefkeyableObject.md +7 -0
- package/docs/api/types/RenderableObject.md +9 -0
- package/docs/api/types/RenderedTextTree.md +5 -0
- package/docs/api/types/ResolutionResult.md +39 -0
- package/docs/api/types/ResolveDeclarationByKeyOptions.md +7 -0
- package/docs/api/types/Resource.md +11 -0
- package/docs/api/types/RootOptions.md +7 -0
- package/docs/api/types/SbrIntrinsicElement.md +5 -0
- package/docs/api/types/ScopeProps.md +5 -0
- package/docs/api/types/SoftlineIntrinsicElement.md +5 -0
- package/docs/api/types/SourceLocation.md +9 -0
- package/docs/api/types/SplitProps.md +12 -0
- package/docs/api/types/StcComponentCreator.md +9 -0
- package/docs/api/types/StcSignature.md +5 -0
- package/docs/api/types/StiComponentCreator.md +9 -0
- package/docs/api/types/StiSignature.md +7 -0
- package/docs/api/types/SymbolCreator.md +15 -0
- package/docs/api/types/SymbolRefkey.md +9 -0
- package/docs/api/types/SymbolSlot.md +12 -0
- package/docs/api/types/SymbolTable.md +15 -0
- package/docs/api/types/TakeSymbolCallback.md +7 -0
- package/docs/api/types/TakeSymbolsCallback.md +7 -0
- package/docs/api/types/Tap.md +11 -0
- package/docs/api/types/TapHandler.md +9 -0
- package/docs/api/types/Tapper.md +9 -0
- package/docs/api/types/TemplateVariableProps.md +5 -0
- package/docs/api/types/index.md +122 -0
- package/docs/api/variables/FormatOptions.md +5 -0
- package/docs/api/variables/Match.md +7 -0
- package/docs/api/variables/REFKEYABLE.md +5 -0
- package/docs/api/variables/RENDERABLE.md +5 -0
- package/docs/api/variables/TO_SYMBOL.md +39 -0
- package/docs/api/variables/contextsByKey.md +5 -0
- package/docs/api/variables/index.md +11 -0
- package/docs/api/variables/intrinsicElementKey.md +5 -0
- package/docs/api/variables/matchTag.md +5 -0
- package/docs/api/variables/printHookTag.md +7 -0
- package/docs/components.md +97 -0
- package/docs/context.md +67 -0
- package/docs/control-flow.md +5 -0
- package/docs/debugging.md +105 -0
- package/docs/formatting.md +99 -0
- package/docs/guides/language-package-guide.md +593 -0
- package/docs/guides/references-and-refkeys.md +210 -0
- package/docs/guides/style-guide.md +244 -0
- package/docs/index.md +22 -0
- package/docs/reactivity.md +68 -0
- package/docs/rendering.md +41 -0
- package/docs/symbols-and-scopes.md +180 -0
- package/package.json +15 -5
- package/src/binder.ts +154 -41
- package/src/components/AccessExpression.test.tsx +132 -0
- package/src/components/AccessExpression.tsx +344 -0
- package/src/components/Block.tsx +12 -0
- package/src/components/For.tsx +14 -10
- package/src/components/List.tsx +18 -5
- package/src/components/MemberDeclaration.tsx +6 -6
- package/src/components/MemberName.tsx +6 -0
- package/src/components/MemberScope.tsx +5 -0
- package/src/components/Output.tsx +4 -1
- package/src/components/Scope.tsx +6 -0
- package/src/components/SourceFile.tsx +22 -2
- package/src/components/Switch.tsx +11 -7
- package/src/components/index.tsx +1 -0
- package/src/context/binder.ts +4 -0
- package/src/context/format-options.ts +14 -1
- package/src/context/scope.ts +4 -0
- package/src/context/source-directory.ts +9 -0
- package/src/debug/cli.ts +3 -2
- package/src/debug/diagnostics-broadcast.test.tsx +98 -0
- package/src/debug/diagnostics.test.tsx +3 -2
- package/src/debug/effects.test.tsx +248 -36
- package/src/debug/effects.ts +198 -64
- package/src/debug/files.test.tsx +15 -35
- package/src/debug/files.ts +11 -11
- package/src/debug/index.ts +4 -0
- package/src/debug/message-format.test.tsx +759 -0
- package/src/debug/render-tree-orphans.test.tsx +344 -0
- package/src/debug/render.test.tsx +96 -118
- package/src/debug/render.ts +196 -125
- package/src/debug/source-map.browser.ts +30 -0
- package/src/debug/source-map.ts +135 -0
- package/src/debug/symbols.test.tsx +19 -20
- package/src/debug/symbols.ts +106 -23
- package/src/debug/trace-writer.ts +984 -0
- package/src/debug/trace.ts +46 -32
- package/src/devtools/devtools-protocol.ts +361 -176
- package/src/devtools/devtools-server.browser.ts +4 -9
- package/src/devtools/devtools-server.ts +226 -33
- package/src/devtools/devtools-transport.ts +4 -4
- package/src/devtools-entry.browser.ts +11 -15
- package/src/devtools-entry.ts +9 -15
- package/src/diagnostics.ts +44 -22
- package/src/host/node-host.browser.ts +23 -0
- package/src/host/node-host.ts +22 -0
- package/src/library-symbol-reference.ts +52 -0
- package/src/name-policy.ts +30 -3
- package/src/reactivity.ts +179 -55
- package/src/render-stack.ts +4 -3
- package/src/render.ts +106 -30
- package/src/scheduler.ts +145 -26
- package/src/symbols/output-scope.ts +33 -1
- package/src/symbols/output-space.ts +13 -0
- package/src/symbols/output-symbol.ts +185 -22
- package/src/symbols/symbol-slot.test.tsx +28 -1
- package/src/symbols/symbol-slot.tsx +8 -0
- package/src/symbols/symbol-table.ts +13 -3
- package/src/utils.tsx +7 -4
- package/src/write-output.ts +6 -5
- package/temp/api-testing.json +673 -0
- package/temp/api.json +895 -73
- package/test/browser-build.test.ts +71 -78
- package/test/reactivity/shallow-reactive.test.tsx +4 -0
- package/test/symbols/deconflicted-name.test.ts +120 -0
- package/test/symbols/output-scope.test.ts +38 -0
- package/testing/create-test-wrapper.tsx +81 -2
- package/testing/devtools-utils.ts +46 -4
- package/testing/extend-expect.ts +22 -1
- package/testing/index.ts +1 -1
- package/testing/render.ts +9 -0
- package/testing/vitest.d.ts +18 -3
- package/vitest.config.ts +8 -0
package/temp/api.json
CHANGED
|
@@ -138,6 +138,448 @@
|
|
|
138
138
|
"name": "",
|
|
139
139
|
"preserveMemberOrder": false,
|
|
140
140
|
"members": [
|
|
141
|
+
{
|
|
142
|
+
"kind": "Interface",
|
|
143
|
+
"canonicalReference": "@alloy-js/core!AccessExpressionConfig:interface",
|
|
144
|
+
"docComment": "/**\n * Configuration for creating a language-specific access expression component.\n *\n * @typeParam TPartProps - The Part component's props type (extends BasePartProps)\n *\n * @typeParam TPart - The descriptor type that formatPart receives\n */\n",
|
|
145
|
+
"excerptTokens": [
|
|
146
|
+
{
|
|
147
|
+
"kind": "Content",
|
|
148
|
+
"text": "export interface AccessExpressionConfig<TPartProps extends "
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"kind": "Reference",
|
|
152
|
+
"text": "BasePartProps",
|
|
153
|
+
"canonicalReference": "@alloy-js/core!BasePartProps:interface"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"kind": "Content",
|
|
157
|
+
"text": ", TPart> "
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"fileUrlPath": "src/components/AccessExpression.tsx",
|
|
161
|
+
"releaseTag": "Public",
|
|
162
|
+
"typeParameters": [
|
|
163
|
+
{
|
|
164
|
+
"typeParameterName": "TPartProps",
|
|
165
|
+
"constraintTokenRange": {
|
|
166
|
+
"startIndex": 1,
|
|
167
|
+
"endIndex": 2
|
|
168
|
+
},
|
|
169
|
+
"defaultTypeTokenRange": {
|
|
170
|
+
"startIndex": 0,
|
|
171
|
+
"endIndex": 0
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"typeParameterName": "TPart",
|
|
176
|
+
"constraintTokenRange": {
|
|
177
|
+
"startIndex": 0,
|
|
178
|
+
"endIndex": 0
|
|
179
|
+
},
|
|
180
|
+
"defaultTypeTokenRange": {
|
|
181
|
+
"startIndex": 0,
|
|
182
|
+
"endIndex": 0
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
],
|
|
186
|
+
"name": "AccessExpressionConfig",
|
|
187
|
+
"preserveMemberOrder": false,
|
|
188
|
+
"members": [
|
|
189
|
+
{
|
|
190
|
+
"kind": "MethodSignature",
|
|
191
|
+
"canonicalReference": "@alloy-js/core!AccessExpressionConfig#canUseCallChains:member(1)",
|
|
192
|
+
"docComment": "/**\n * Additional check for whether call chain formatting should be used.\n * Called only when `isCallPart` is provided and more than one call is detected.\n * Return false to force linear formatting (e.g., TypeScript disables call\n * chains when any part has `await`).\n * Defaults to `() => true`.\n */\n",
|
|
193
|
+
"excerptTokens": [
|
|
194
|
+
{
|
|
195
|
+
"kind": "Content",
|
|
196
|
+
"text": "canUseCallChains?(parts: "
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"kind": "Content",
|
|
200
|
+
"text": "TPart[]"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"kind": "Content",
|
|
204
|
+
"text": "): "
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"kind": "Content",
|
|
208
|
+
"text": "boolean"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"kind": "Content",
|
|
212
|
+
"text": ";"
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
"isOptional": true,
|
|
216
|
+
"returnTypeTokenRange": {
|
|
217
|
+
"startIndex": 3,
|
|
218
|
+
"endIndex": 4
|
|
219
|
+
},
|
|
220
|
+
"releaseTag": "Public",
|
|
221
|
+
"overloadIndex": 1,
|
|
222
|
+
"parameters": [
|
|
223
|
+
{
|
|
224
|
+
"parameterName": "parts",
|
|
225
|
+
"parameterTypeTokenRange": {
|
|
226
|
+
"startIndex": 1,
|
|
227
|
+
"endIndex": 2
|
|
228
|
+
},
|
|
229
|
+
"isOptional": false
|
|
230
|
+
}
|
|
231
|
+
],
|
|
232
|
+
"name": "canUseCallChains"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"kind": "MethodSignature",
|
|
236
|
+
"canonicalReference": "@alloy-js/core!AccessExpressionConfig#createDescriptor:member(1)",
|
|
237
|
+
"docComment": "/**\n * Convert Part props + resolved symbol into a plain descriptor object.\n * Called once per Part during children processing. The returned descriptor\n * is wrapped in a computed + getter delegation for reactive optimization.\n */\n",
|
|
238
|
+
"excerptTokens": [
|
|
239
|
+
{
|
|
240
|
+
"kind": "Content",
|
|
241
|
+
"text": "createDescriptor(props: "
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"kind": "Content",
|
|
245
|
+
"text": "TPartProps"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"kind": "Content",
|
|
249
|
+
"text": ", symbol: "
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"kind": "Reference",
|
|
253
|
+
"text": "OutputSymbol",
|
|
254
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:class"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"kind": "Content",
|
|
258
|
+
"text": " | undefined"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"kind": "Content",
|
|
262
|
+
"text": ", first: "
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"kind": "Content",
|
|
266
|
+
"text": "boolean"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"kind": "Content",
|
|
270
|
+
"text": "): "
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"kind": "Content",
|
|
274
|
+
"text": "TPart"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"kind": "Content",
|
|
278
|
+
"text": ";"
|
|
279
|
+
}
|
|
280
|
+
],
|
|
281
|
+
"isOptional": false,
|
|
282
|
+
"returnTypeTokenRange": {
|
|
283
|
+
"startIndex": 8,
|
|
284
|
+
"endIndex": 9
|
|
285
|
+
},
|
|
286
|
+
"releaseTag": "Public",
|
|
287
|
+
"overloadIndex": 1,
|
|
288
|
+
"parameters": [
|
|
289
|
+
{
|
|
290
|
+
"parameterName": "props",
|
|
291
|
+
"parameterTypeTokenRange": {
|
|
292
|
+
"startIndex": 1,
|
|
293
|
+
"endIndex": 2
|
|
294
|
+
},
|
|
295
|
+
"isOptional": false
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"parameterName": "symbol",
|
|
299
|
+
"parameterTypeTokenRange": {
|
|
300
|
+
"startIndex": 3,
|
|
301
|
+
"endIndex": 5
|
|
302
|
+
},
|
|
303
|
+
"isOptional": false
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"parameterName": "first",
|
|
307
|
+
"parameterTypeTokenRange": {
|
|
308
|
+
"startIndex": 6,
|
|
309
|
+
"endIndex": 7
|
|
310
|
+
},
|
|
311
|
+
"isOptional": false
|
|
312
|
+
}
|
|
313
|
+
],
|
|
314
|
+
"name": "createDescriptor"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"kind": "MethodSignature",
|
|
318
|
+
"canonicalReference": "@alloy-js/core!AccessExpressionConfig#formatPart:member(1)",
|
|
319
|
+
"docComment": "/**\n * Format a non-first part given its descriptor and the previous part.\n * Returns JSX children for that segment (e.g., `.foo`, `?.bar`, `[idx]`, `(args)`).\n * `inCallChain` is true when rendering inside a chunked call chain.\n */\n",
|
|
320
|
+
"excerptTokens": [
|
|
321
|
+
{
|
|
322
|
+
"kind": "Content",
|
|
323
|
+
"text": "formatPart(part: "
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"kind": "Content",
|
|
327
|
+
"text": "TPart"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"kind": "Content",
|
|
331
|
+
"text": ", prevPart: "
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"kind": "Content",
|
|
335
|
+
"text": "TPart"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"kind": "Content",
|
|
339
|
+
"text": ", inCallChain: "
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"kind": "Content",
|
|
343
|
+
"text": "boolean"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"kind": "Content",
|
|
347
|
+
"text": "): "
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"kind": "Reference",
|
|
351
|
+
"text": "Children",
|
|
352
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"kind": "Content",
|
|
356
|
+
"text": ";"
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
"isOptional": false,
|
|
360
|
+
"returnTypeTokenRange": {
|
|
361
|
+
"startIndex": 7,
|
|
362
|
+
"endIndex": 8
|
|
363
|
+
},
|
|
364
|
+
"releaseTag": "Public",
|
|
365
|
+
"overloadIndex": 1,
|
|
366
|
+
"parameters": [
|
|
367
|
+
{
|
|
368
|
+
"parameterName": "part",
|
|
369
|
+
"parameterTypeTokenRange": {
|
|
370
|
+
"startIndex": 1,
|
|
371
|
+
"endIndex": 2
|
|
372
|
+
},
|
|
373
|
+
"isOptional": false
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"parameterName": "prevPart",
|
|
377
|
+
"parameterTypeTokenRange": {
|
|
378
|
+
"startIndex": 3,
|
|
379
|
+
"endIndex": 4
|
|
380
|
+
},
|
|
381
|
+
"isOptional": false
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"parameterName": "inCallChain",
|
|
385
|
+
"parameterTypeTokenRange": {
|
|
386
|
+
"startIndex": 5,
|
|
387
|
+
"endIndex": 6
|
|
388
|
+
},
|
|
389
|
+
"isOptional": false
|
|
390
|
+
}
|
|
391
|
+
],
|
|
392
|
+
"name": "formatPart"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"kind": "MethodSignature",
|
|
396
|
+
"canonicalReference": "@alloy-js/core!AccessExpressionConfig#getBase:member(1)",
|
|
397
|
+
"docComment": "/**\n * Extract the base content from the first part (the leftmost identifier).\n */\n",
|
|
398
|
+
"excerptTokens": [
|
|
399
|
+
{
|
|
400
|
+
"kind": "Content",
|
|
401
|
+
"text": "getBase(part: "
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"kind": "Content",
|
|
405
|
+
"text": "TPart"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"kind": "Content",
|
|
409
|
+
"text": "): "
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"kind": "Reference",
|
|
413
|
+
"text": "Children",
|
|
414
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"kind": "Content",
|
|
418
|
+
"text": ";"
|
|
419
|
+
}
|
|
420
|
+
],
|
|
421
|
+
"isOptional": false,
|
|
422
|
+
"returnTypeTokenRange": {
|
|
423
|
+
"startIndex": 3,
|
|
424
|
+
"endIndex": 4
|
|
425
|
+
},
|
|
426
|
+
"releaseTag": "Public",
|
|
427
|
+
"overloadIndex": 1,
|
|
428
|
+
"parameters": [
|
|
429
|
+
{
|
|
430
|
+
"parameterName": "part",
|
|
431
|
+
"parameterTypeTokenRange": {
|
|
432
|
+
"startIndex": 1,
|
|
433
|
+
"endIndex": 2
|
|
434
|
+
},
|
|
435
|
+
"isOptional": false
|
|
436
|
+
}
|
|
437
|
+
],
|
|
438
|
+
"name": "getBase"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"kind": "MethodSignature",
|
|
442
|
+
"canonicalReference": "@alloy-js/core!AccessExpressionConfig#isCallPart:member(1)",
|
|
443
|
+
"docComment": "/**\n * Identify which parts are function calls, for call chain detection.\n * When provided, the factory uses the chunked call chain algorithm\n * (line breaks after each call group) when more than one call is detected.\n * When omitted, the expression is always formatted linearly.\n */\n",
|
|
444
|
+
"excerptTokens": [
|
|
445
|
+
{
|
|
446
|
+
"kind": "Content",
|
|
447
|
+
"text": "isCallPart?(part: "
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"kind": "Content",
|
|
451
|
+
"text": "TPart"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"kind": "Content",
|
|
455
|
+
"text": "): "
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"kind": "Content",
|
|
459
|
+
"text": "boolean"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"kind": "Content",
|
|
463
|
+
"text": ";"
|
|
464
|
+
}
|
|
465
|
+
],
|
|
466
|
+
"isOptional": true,
|
|
467
|
+
"returnTypeTokenRange": {
|
|
468
|
+
"startIndex": 3,
|
|
469
|
+
"endIndex": 4
|
|
470
|
+
},
|
|
471
|
+
"releaseTag": "Public",
|
|
472
|
+
"overloadIndex": 1,
|
|
473
|
+
"parameters": [
|
|
474
|
+
{
|
|
475
|
+
"parameterName": "part",
|
|
476
|
+
"parameterTypeTokenRange": {
|
|
477
|
+
"startIndex": 1,
|
|
478
|
+
"endIndex": 2
|
|
479
|
+
},
|
|
480
|
+
"isOptional": false
|
|
481
|
+
}
|
|
482
|
+
],
|
|
483
|
+
"name": "isCallPart"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"kind": "MethodSignature",
|
|
487
|
+
"canonicalReference": "@alloy-js/core!AccessExpressionConfig#wrapPartResult:member(1)",
|
|
488
|
+
"docComment": "/**\n * Post-process the accumulated expression after each part in linear\n * (non-call-chain) mode. Use this for language-specific wrapping like\n * TypeScript's `await` which wraps the entire expression so far.\n * Defaults to identity (returns expression unchanged).\n */\n",
|
|
489
|
+
"excerptTokens": [
|
|
490
|
+
{
|
|
491
|
+
"kind": "Content",
|
|
492
|
+
"text": "wrapPartResult?(expression: "
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"kind": "Reference",
|
|
496
|
+
"text": "Children",
|
|
497
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"kind": "Content",
|
|
501
|
+
"text": ", part: "
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"kind": "Content",
|
|
505
|
+
"text": "TPart"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"kind": "Content",
|
|
509
|
+
"text": ", index: "
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"kind": "Content",
|
|
513
|
+
"text": "number"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"kind": "Content",
|
|
517
|
+
"text": ", isLast: "
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"kind": "Content",
|
|
521
|
+
"text": "boolean"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"kind": "Content",
|
|
525
|
+
"text": "): "
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"kind": "Reference",
|
|
529
|
+
"text": "Children",
|
|
530
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"kind": "Content",
|
|
534
|
+
"text": ";"
|
|
535
|
+
}
|
|
536
|
+
],
|
|
537
|
+
"isOptional": true,
|
|
538
|
+
"returnTypeTokenRange": {
|
|
539
|
+
"startIndex": 9,
|
|
540
|
+
"endIndex": 10
|
|
541
|
+
},
|
|
542
|
+
"releaseTag": "Public",
|
|
543
|
+
"overloadIndex": 1,
|
|
544
|
+
"parameters": [
|
|
545
|
+
{
|
|
546
|
+
"parameterName": "expression",
|
|
547
|
+
"parameterTypeTokenRange": {
|
|
548
|
+
"startIndex": 1,
|
|
549
|
+
"endIndex": 2
|
|
550
|
+
},
|
|
551
|
+
"isOptional": false
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"parameterName": "part",
|
|
555
|
+
"parameterTypeTokenRange": {
|
|
556
|
+
"startIndex": 3,
|
|
557
|
+
"endIndex": 4
|
|
558
|
+
},
|
|
559
|
+
"isOptional": false
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"parameterName": "index",
|
|
563
|
+
"parameterTypeTokenRange": {
|
|
564
|
+
"startIndex": 5,
|
|
565
|
+
"endIndex": 6
|
|
566
|
+
},
|
|
567
|
+
"isOptional": false
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"parameterName": "isLast",
|
|
571
|
+
"parameterTypeTokenRange": {
|
|
572
|
+
"startIndex": 7,
|
|
573
|
+
"endIndex": 8
|
|
574
|
+
},
|
|
575
|
+
"isOptional": false
|
|
576
|
+
}
|
|
577
|
+
],
|
|
578
|
+
"name": "wrapPartResult"
|
|
579
|
+
}
|
|
580
|
+
],
|
|
581
|
+
"extendsTokenRanges": []
|
|
582
|
+
},
|
|
141
583
|
{
|
|
142
584
|
"kind": "TypeAlias",
|
|
143
585
|
"canonicalReference": "@alloy-js/core!AlignIntrinsicElement:type",
|
|
@@ -854,7 +1296,7 @@
|
|
|
854
1296
|
{
|
|
855
1297
|
"kind": "PropertySignature",
|
|
856
1298
|
"canonicalReference": "@alloy-js/core!BaseListProps#enderPunctuation:member",
|
|
857
|
-
"docComment": "/**\n * Place the join punctuation at the end,
|
|
1299
|
+
"docComment": "/**\n * Place the join punctuation at the end, without a line break. The punctuation\n * is emitted unconditionally in flat and broken modes.\n *\n * To add trailing punctuation only in broken mode, use `ender` with `<ifBreak>`\n * inside a `<group>` with a non-hardline joiner (e.g. `line`):\n *\n * ```tsx\n * <group>\n * <List comma line ender={<ifBreak>,</ifBreak>}>...</List>\n * </group>\n * ```\n *\n */\n",
|
|
858
1300
|
"excerptTokens": [
|
|
859
1301
|
{
|
|
860
1302
|
"kind": "Content",
|
|
@@ -1118,6 +1560,80 @@
|
|
|
1118
1560
|
],
|
|
1119
1561
|
"name": "baseListPropsToMapJoinArgs"
|
|
1120
1562
|
},
|
|
1563
|
+
{
|
|
1564
|
+
"kind": "Interface",
|
|
1565
|
+
"canonicalReference": "@alloy-js/core!BasePartProps:interface",
|
|
1566
|
+
"docComment": "/**\n * Base props that all language-specific Part components must include.\n * Language packages extend this with additional props.\n */\n",
|
|
1567
|
+
"excerptTokens": [
|
|
1568
|
+
{
|
|
1569
|
+
"kind": "Content",
|
|
1570
|
+
"text": "export interface BasePartProps "
|
|
1571
|
+
}
|
|
1572
|
+
],
|
|
1573
|
+
"fileUrlPath": "src/components/AccessExpression.tsx",
|
|
1574
|
+
"releaseTag": "Public",
|
|
1575
|
+
"name": "BasePartProps",
|
|
1576
|
+
"preserveMemberOrder": false,
|
|
1577
|
+
"members": [
|
|
1578
|
+
{
|
|
1579
|
+
"kind": "PropertySignature",
|
|
1580
|
+
"canonicalReference": "@alloy-js/core!BasePartProps#refkey:member",
|
|
1581
|
+
"docComment": "",
|
|
1582
|
+
"excerptTokens": [
|
|
1583
|
+
{
|
|
1584
|
+
"kind": "Content",
|
|
1585
|
+
"text": "refkey?: "
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"kind": "Reference",
|
|
1589
|
+
"text": "Refkeyable",
|
|
1590
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
"kind": "Content",
|
|
1594
|
+
"text": ";"
|
|
1595
|
+
}
|
|
1596
|
+
],
|
|
1597
|
+
"isReadonly": false,
|
|
1598
|
+
"isOptional": true,
|
|
1599
|
+
"releaseTag": "Public",
|
|
1600
|
+
"name": "refkey",
|
|
1601
|
+
"propertyTypeTokenRange": {
|
|
1602
|
+
"startIndex": 1,
|
|
1603
|
+
"endIndex": 2
|
|
1604
|
+
}
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
"kind": "PropertySignature",
|
|
1608
|
+
"canonicalReference": "@alloy-js/core!BasePartProps#symbol:member",
|
|
1609
|
+
"docComment": "",
|
|
1610
|
+
"excerptTokens": [
|
|
1611
|
+
{
|
|
1612
|
+
"kind": "Content",
|
|
1613
|
+
"text": "symbol?: "
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"kind": "Reference",
|
|
1617
|
+
"text": "OutputSymbol",
|
|
1618
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:class"
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
"kind": "Content",
|
|
1622
|
+
"text": ";"
|
|
1623
|
+
}
|
|
1624
|
+
],
|
|
1625
|
+
"isReadonly": false,
|
|
1626
|
+
"isOptional": true,
|
|
1627
|
+
"releaseTag": "Public",
|
|
1628
|
+
"name": "symbol",
|
|
1629
|
+
"propertyTypeTokenRange": {
|
|
1630
|
+
"startIndex": 1,
|
|
1631
|
+
"endIndex": 2
|
|
1632
|
+
}
|
|
1633
|
+
}
|
|
1634
|
+
],
|
|
1635
|
+
"extendsTokenRanges": []
|
|
1636
|
+
},
|
|
1121
1637
|
{
|
|
1122
1638
|
"kind": "Class",
|
|
1123
1639
|
"canonicalReference": "@alloy-js/core!BasicScope:class",
|
|
@@ -2010,7 +2526,7 @@
|
|
|
2010
2526
|
{
|
|
2011
2527
|
"kind": "Function",
|
|
2012
2528
|
"canonicalReference": "@alloy-js/core!Block:function(1)",
|
|
2013
|
-
"docComment": "/**\n * Create an indented block of source text. The block has `opener` text which is\n * added prior to the block, which defaults to `\"{\"`, and `closer` text which is\n * added after the block, which defaults to `\"}\"`.\n */\n",
|
|
2529
|
+
"docComment": "/**\n * Create an indented block of source text. The block has `opener` text which is\n * added prior to the block, which defaults to `\"{\"`, and `closer` text which is\n * added after the block, which defaults to `\"}\"`.\n *\n * @remarks\n *\n *\n *\n * When `children` is empty, `Block` renders as `{}` (opener immediately followed\n * by closer) with no indented content — no explicit empty check is needed before\n * passing children.\n *\n * @example\n * ```tsx\n * // Safe even when props.members is empty — renders `{}`\n * <Block>{props.members}</Block>\n * ```\n *\n */\n",
|
|
2014
2530
|
"excerptTokens": [
|
|
2015
2531
|
{
|
|
2016
2532
|
"kind": "Content",
|
|
@@ -4413,14 +4929,137 @@
|
|
|
4413
4929
|
"startIndex": 1,
|
|
4414
4930
|
"endIndex": 2
|
|
4415
4931
|
}
|
|
4416
|
-
}
|
|
4417
|
-
],
|
|
4418
|
-
"extendsTokenRanges": [
|
|
4932
|
+
}
|
|
4933
|
+
],
|
|
4934
|
+
"extendsTokenRanges": [
|
|
4935
|
+
{
|
|
4936
|
+
"startIndex": 1,
|
|
4937
|
+
"endIndex": 2
|
|
4938
|
+
}
|
|
4939
|
+
]
|
|
4940
|
+
},
|
|
4941
|
+
{
|
|
4942
|
+
"kind": "Function",
|
|
4943
|
+
"canonicalReference": "@alloy-js/core!createAccessExpression:function(1)",
|
|
4944
|
+
"docComment": "/**\n * Create a language-specific access/member expression component pair.\n *\n * Returns `{ Expression, Part }` where:\n * - `Expression` is the main component that collects Part children and renders the chain\n * - `Part` is a no-op component whose props are consumed by Expression\n *\n * The factory handles:\n * - Children collection and Part filtering\n * - Symbol resolution (refkey → symbol via binder, single computed per part)\n * - Reactive optimization (getter delegation over single computed per part)\n * - Flattening nested Expression instances\n * - `takeSymbols()` to prevent symbol leakage\n * - Call chain detection and chunked formatting algorithm\n */\n",
|
|
4945
|
+
"excerptTokens": [
|
|
4946
|
+
{
|
|
4947
|
+
"kind": "Content",
|
|
4948
|
+
"text": "export declare function createAccessExpression<TPartProps extends "
|
|
4949
|
+
},
|
|
4950
|
+
{
|
|
4951
|
+
"kind": "Reference",
|
|
4952
|
+
"text": "BasePartProps",
|
|
4953
|
+
"canonicalReference": "@alloy-js/core!BasePartProps:interface"
|
|
4954
|
+
},
|
|
4955
|
+
{
|
|
4956
|
+
"kind": "Content",
|
|
4957
|
+
"text": ", TPart extends "
|
|
4958
|
+
},
|
|
4959
|
+
{
|
|
4960
|
+
"kind": "Reference",
|
|
4961
|
+
"text": "Record",
|
|
4962
|
+
"canonicalReference": "!Record:type"
|
|
4963
|
+
},
|
|
4964
|
+
{
|
|
4965
|
+
"kind": "Content",
|
|
4966
|
+
"text": "<string, unknown>"
|
|
4967
|
+
},
|
|
4968
|
+
{
|
|
4969
|
+
"kind": "Content",
|
|
4970
|
+
"text": ">(config: "
|
|
4971
|
+
},
|
|
4972
|
+
{
|
|
4973
|
+
"kind": "Reference",
|
|
4974
|
+
"text": "AccessExpressionConfig",
|
|
4975
|
+
"canonicalReference": "@alloy-js/core!AccessExpressionConfig:interface"
|
|
4976
|
+
},
|
|
4977
|
+
{
|
|
4978
|
+
"kind": "Content",
|
|
4979
|
+
"text": "<TPartProps, TPart>"
|
|
4980
|
+
},
|
|
4981
|
+
{
|
|
4982
|
+
"kind": "Content",
|
|
4983
|
+
"text": "): "
|
|
4984
|
+
},
|
|
4985
|
+
{
|
|
4986
|
+
"kind": "Content",
|
|
4987
|
+
"text": "{\n Expression: (props: {\n children: "
|
|
4988
|
+
},
|
|
4989
|
+
{
|
|
4990
|
+
"kind": "Reference",
|
|
4991
|
+
"text": "Children",
|
|
4992
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
4993
|
+
},
|
|
4994
|
+
{
|
|
4995
|
+
"kind": "Content",
|
|
4996
|
+
"text": ";\n }) => "
|
|
4997
|
+
},
|
|
4998
|
+
{
|
|
4999
|
+
"kind": "Reference",
|
|
5000
|
+
"text": "Children",
|
|
5001
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
5002
|
+
},
|
|
5003
|
+
{
|
|
5004
|
+
"kind": "Content",
|
|
5005
|
+
"text": ";\n Part: (_props: TPartProps) => void;\n registerOuterComponent: (component: "
|
|
5006
|
+
},
|
|
5007
|
+
{
|
|
5008
|
+
"kind": "Reference",
|
|
5009
|
+
"text": "ComponentDefinition",
|
|
5010
|
+
"canonicalReference": "@alloy-js/core!ComponentDefinition:interface"
|
|
5011
|
+
},
|
|
5012
|
+
{
|
|
5013
|
+
"kind": "Content",
|
|
5014
|
+
"text": "<any>) => void;\n}"
|
|
5015
|
+
},
|
|
5016
|
+
{
|
|
5017
|
+
"kind": "Content",
|
|
5018
|
+
"text": ";"
|
|
5019
|
+
}
|
|
5020
|
+
],
|
|
5021
|
+
"fileUrlPath": "src/components/AccessExpression.tsx",
|
|
5022
|
+
"returnTypeTokenRange": {
|
|
5023
|
+
"startIndex": 9,
|
|
5024
|
+
"endIndex": 16
|
|
5025
|
+
},
|
|
5026
|
+
"releaseTag": "Public",
|
|
5027
|
+
"overloadIndex": 1,
|
|
5028
|
+
"parameters": [
|
|
5029
|
+
{
|
|
5030
|
+
"parameterName": "config",
|
|
5031
|
+
"parameterTypeTokenRange": {
|
|
5032
|
+
"startIndex": 6,
|
|
5033
|
+
"endIndex": 8
|
|
5034
|
+
},
|
|
5035
|
+
"isOptional": false
|
|
5036
|
+
}
|
|
5037
|
+
],
|
|
5038
|
+
"typeParameters": [
|
|
5039
|
+
{
|
|
5040
|
+
"typeParameterName": "TPartProps",
|
|
5041
|
+
"constraintTokenRange": {
|
|
5042
|
+
"startIndex": 1,
|
|
5043
|
+
"endIndex": 2
|
|
5044
|
+
},
|
|
5045
|
+
"defaultTypeTokenRange": {
|
|
5046
|
+
"startIndex": 0,
|
|
5047
|
+
"endIndex": 0
|
|
5048
|
+
}
|
|
5049
|
+
},
|
|
4419
5050
|
{
|
|
4420
|
-
"
|
|
4421
|
-
"
|
|
5051
|
+
"typeParameterName": "TPart",
|
|
5052
|
+
"constraintTokenRange": {
|
|
5053
|
+
"startIndex": 3,
|
|
5054
|
+
"endIndex": 5
|
|
5055
|
+
},
|
|
5056
|
+
"defaultTypeTokenRange": {
|
|
5057
|
+
"startIndex": 0,
|
|
5058
|
+
"endIndex": 0
|
|
5059
|
+
}
|
|
4422
5060
|
}
|
|
4423
|
-
]
|
|
5061
|
+
],
|
|
5062
|
+
"name": "createAccessExpression"
|
|
4424
5063
|
},
|
|
4425
5064
|
{
|
|
4426
5065
|
"kind": "Function",
|
|
@@ -4898,7 +5537,7 @@
|
|
|
4898
5537
|
{
|
|
4899
5538
|
"kind": "Function",
|
|
4900
5539
|
"canonicalReference": "@alloy-js/core!createFormatOptionsContextFor:function(1)",
|
|
4901
|
-
"docComment": "/**\n * Create a format options context for a specific file type\n */\n",
|
|
5540
|
+
"docComment": "/**\n * Create a format options context for a specific file type. Returns a\n * `Provider` component and a `useFormatOptions` hook.\n *\n * @remarks\n *\n *\n *\n * Merge precedence: `defaults` (lowest) → Provider `value` → `overrides`\n * argument to `useFormatOptions()` (highest). Undefined override values are\n * ignored.\n */\n",
|
|
4902
5541
|
"excerptTokens": [
|
|
4903
5542
|
{
|
|
4904
5543
|
"kind": "Content",
|
|
@@ -5261,7 +5900,7 @@
|
|
|
5261
5900
|
{
|
|
5262
5901
|
"kind": "Function",
|
|
5263
5902
|
"canonicalReference": "@alloy-js/core!createNamePolicy:function(1)",
|
|
5264
|
-
"docComment": "",
|
|
5903
|
+
"docComment": "/**\n * Creates a name policy that transforms symbol names based on element kind.\n *\n * @remarks\n *\n *\n * `element` identifies the kind of declaration (e.g., `\"value\"`, `\"type\"`).\n * The set of valid element strings is defined by the language package.\n *\n * When `element` is `undefined` (outside a declaration context), {@link NamePolicy.getName}\n * and {@link NamePolicy.for} short-circuit and return the original name unchanged — the\n * namer callback is **not** invoked. The namer therefore always receives a defined `T`.\n * This means names outside a declaration context cannot be transformed by the policy.\n *\n * @example\n * ```ts\n * const policy = createNamePolicy((name, element) => {\n * if (element === \"value\") return toCamelCase(name);\n * if (element === \"type\") return toPascalCase(name);\n * return name;\n * });\n * <Output namePolicy={policy}>...</Output>\n * ```\n *\n */\n",
|
|
5265
5904
|
"excerptTokens": [
|
|
5266
5905
|
{
|
|
5267
5906
|
"kind": "Content",
|
|
@@ -5277,7 +5916,7 @@
|
|
|
5277
5916
|
},
|
|
5278
5917
|
{
|
|
5279
5918
|
"kind": "Content",
|
|
5280
|
-
"text": "(name: string,
|
|
5919
|
+
"text": "(name: string, element: T) => string"
|
|
5281
5920
|
},
|
|
5282
5921
|
{
|
|
5283
5922
|
"kind": "Content",
|
|
@@ -5641,7 +6280,7 @@
|
|
|
5641
6280
|
{
|
|
5642
6281
|
"kind": "Function",
|
|
5643
6282
|
"canonicalReference": "@alloy-js/core!createScope:function(1)",
|
|
5644
|
-
"docComment": "",
|
|
6283
|
+
"docComment": "/**\n * Construct a scope instance and register it with devtools. Prefer this over\n * calling `new` directly so that debugging tools can track the scope.\n *\n * @remarks\n *\n *\n *\n * Inside a component, obtain the current scope with `useScope()` and pass it\n * as the `parentScope` constructor argument so the new scope is wired into\n * the scope tree.\n *\n * @param ctor - The scope subclass constructor.\n *\n * @param args - Positional arguments forwarded directly to the scope\n * constructor; see {@link OutputScope} for the base-class constructor\n * signature.\n *\n * @example\n * ```tsx\n * function MyScope(props) {\n * const parentScope = useScope();\n * const scope = createScope(MyScope, \"scope-name\", parentScope);\n * return <Scope value={scope}>{props.children}</Scope>;\n * }\n * ```\n *\n */\n",
|
|
5645
6284
|
"excerptTokens": [
|
|
5646
6285
|
{
|
|
5647
6286
|
"kind": "Content",
|
|
@@ -5902,7 +6541,7 @@
|
|
|
5902
6541
|
{
|
|
5903
6542
|
"kind": "Function",
|
|
5904
6543
|
"canonicalReference": "@alloy-js/core!createSymbol:function(1)",
|
|
5905
|
-
"docComment": "",
|
|
6544
|
+
"docComment": "/**\n * Construct a symbol instance and register it with devtools. Prefer this over\n * calling `new` directly so that debugging tools can track the symbol.\n *\n * @remarks\n *\n *\n *\n * Binder registration (via `useBinder()` + `notifySymbolCreated()`) happens\n * inside the `OutputSymbol` constructor regardless of whether you use\n * `createSymbol` or `new`. This helper only adds devtools registration.\n *\n * @param ctor - The symbol subclass constructor.\n *\n * @param args - Arguments forwarded to the constructor.\n */\n",
|
|
5906
6545
|
"excerptTokens": [
|
|
5907
6546
|
{
|
|
5908
6547
|
"kind": "Content",
|
|
@@ -8415,6 +9054,67 @@
|
|
|
8415
9054
|
"endIndex": 8
|
|
8416
9055
|
}
|
|
8417
9056
|
},
|
|
9057
|
+
{
|
|
9058
|
+
"kind": "Function",
|
|
9059
|
+
"canonicalReference": "@alloy-js/core!formatReactivePropertyLabel:function(1)",
|
|
9060
|
+
"docComment": "/**\n * Build a human-readable label for a reactive property like `symbolName.prop`.\n */\n",
|
|
9061
|
+
"excerptTokens": [
|
|
9062
|
+
{
|
|
9063
|
+
"kind": "Content",
|
|
9064
|
+
"text": "export declare function formatReactivePropertyLabel(target: "
|
|
9065
|
+
},
|
|
9066
|
+
{
|
|
9067
|
+
"kind": "Content",
|
|
9068
|
+
"text": "object"
|
|
9069
|
+
},
|
|
9070
|
+
{
|
|
9071
|
+
"kind": "Content",
|
|
9072
|
+
"text": ", key: "
|
|
9073
|
+
},
|
|
9074
|
+
{
|
|
9075
|
+
"kind": "Content",
|
|
9076
|
+
"text": "string | number"
|
|
9077
|
+
},
|
|
9078
|
+
{
|
|
9079
|
+
"kind": "Content",
|
|
9080
|
+
"text": "): "
|
|
9081
|
+
},
|
|
9082
|
+
{
|
|
9083
|
+
"kind": "Content",
|
|
9084
|
+
"text": "string"
|
|
9085
|
+
},
|
|
9086
|
+
{
|
|
9087
|
+
"kind": "Content",
|
|
9088
|
+
"text": ";"
|
|
9089
|
+
}
|
|
9090
|
+
],
|
|
9091
|
+
"fileUrlPath": "src/reactivity.ts",
|
|
9092
|
+
"returnTypeTokenRange": {
|
|
9093
|
+
"startIndex": 5,
|
|
9094
|
+
"endIndex": 6
|
|
9095
|
+
},
|
|
9096
|
+
"releaseTag": "Public",
|
|
9097
|
+
"overloadIndex": 1,
|
|
9098
|
+
"parameters": [
|
|
9099
|
+
{
|
|
9100
|
+
"parameterName": "target",
|
|
9101
|
+
"parameterTypeTokenRange": {
|
|
9102
|
+
"startIndex": 1,
|
|
9103
|
+
"endIndex": 2
|
|
9104
|
+
},
|
|
9105
|
+
"isOptional": false
|
|
9106
|
+
},
|
|
9107
|
+
{
|
|
9108
|
+
"parameterName": "key",
|
|
9109
|
+
"parameterTypeTokenRange": {
|
|
9110
|
+
"startIndex": 3,
|
|
9111
|
+
"endIndex": 4
|
|
9112
|
+
},
|
|
9113
|
+
"isOptional": false
|
|
9114
|
+
}
|
|
9115
|
+
],
|
|
9116
|
+
"name": "formatReactivePropertyLabel"
|
|
9117
|
+
},
|
|
8418
9118
|
{
|
|
8419
9119
|
"kind": "Interface",
|
|
8420
9120
|
"canonicalReference": "@alloy-js/core!ForProps:interface",
|
|
@@ -11574,7 +12274,7 @@
|
|
|
11574
12274
|
{
|
|
11575
12275
|
"kind": "Interface",
|
|
11576
12276
|
"canonicalReference": "@alloy-js/core!LibrarySymbolReference:interface",
|
|
11577
|
-
"docComment": "",
|
|
12277
|
+
"docComment": "/**\n * An object that acts as a lazy reference to an external library symbol.\n * Implements {@link REFKEYABLE} and `[TO_SYMBOL]()`.\n *\n * Use {@link isLibrarySymbolReference} to test whether an unknown value is a\n * library symbol reference.\n */\n",
|
|
11578
12278
|
"excerptTokens": [
|
|
11579
12279
|
{
|
|
11580
12280
|
"kind": "Content",
|
|
@@ -12634,7 +13334,7 @@
|
|
|
12634
13334
|
{
|
|
12635
13335
|
"kind": "Function",
|
|
12636
13336
|
"canonicalReference": "@alloy-js/core!MemberDeclaration:function(1)",
|
|
12637
|
-
"docComment": "/**\n * Declares a symbol in the current member scope for this component's children.\n *\n * @remarks\n *\n *\n *\n * This component must be called in one of two ways: with a name and an optional\n * refkey, or else passing in the symbol. When called with a name and refkey, a\n *
|
|
13337
|
+
"docComment": "/**\n * Declares a symbol in the current member scope for this component's children.\n *\n * @remarks\n *\n *\n *\n * This component must be called in one of two ways: with a name and an optional\n * refkey, or else passing in the symbol. When called with a name and refkey, a\n * `BasicSymbol` will be created in the current member space. When called with a\n * `name`, the owning scope must be a `BasicScope`; for custom scope/symbol\n * types, pass a pre-created `symbol` instead.\n *\n * When called with a symbol, that symbol is merely exposed via\n * {@link MemberDeclarationContext} (not {@link DeclarationContext}). Use\n * {@link MemberName} (not `<Name />`) to render the declared member's name.\n *\n * @see\n *\n * {@link BinderContext}\n *\n * @see\n *\n * {@link MemberName}\n */\n",
|
|
12638
13338
|
"excerptTokens": [
|
|
12639
13339
|
{
|
|
12640
13340
|
"kind": "Content",
|
|
@@ -13079,7 +13779,7 @@
|
|
|
13079
13779
|
{
|
|
13080
13780
|
"kind": "Function",
|
|
13081
13781
|
"canonicalReference": "@alloy-js/core!MemberName:function(1)",
|
|
13082
|
-
"docComment": "",
|
|
13782
|
+
"docComment": "/**\n * Renders the name of the current member declaration from\n * {@link MemberDeclarationContext}. Use this inside a\n * {@link MemberDeclaration} component instead of `<Name />`, which reads from\n * the top-level {@link DeclarationContext}.\n */\n",
|
|
13083
13783
|
"excerptTokens": [
|
|
13084
13784
|
{
|
|
13085
13785
|
"kind": "Content",
|
|
@@ -13379,7 +14079,7 @@
|
|
|
13379
14079
|
{
|
|
13380
14080
|
"kind": "Interface",
|
|
13381
14081
|
"canonicalReference": "@alloy-js/core!MemberResolver:interface",
|
|
13382
|
-
"docComment": "",
|
|
14082
|
+
"docComment": "/**\n * A callback that performs access-control filtering during member resolution.\n *\n * @remarks\n *\n *\n *\n * When provided to {@link ResolveDeclarationByKeyOptions}, it entirely replaces\n * the default checks (ownership assertion and `isMemberSymbol` assertion).\n *\n * **Contract:**\n * - **Return `void`** to accept the member.\n * - **Throw an error** to reject the member — the error propagates to the caller,\n * matching the behavior of the default checks.\n *\n * @example\n * ```ts\n * const resolver: MemberResolver<MyScope, MySymbol> = (owner, member, ctx) => {\n * if (member.isPrivate && !ctx.isMemberAccess) {\n * throw new Error(`${member.name} is not accessible here`);\n * }\n * };\n * ```\n *\n * @see\n *\n * {@link MemberResolutionContext} for available context properties.\n */\n",
|
|
13383
14083
|
"excerptTokens": [
|
|
13384
14084
|
{
|
|
13385
14085
|
"kind": "Content",
|
|
@@ -13519,7 +14219,7 @@
|
|
|
13519
14219
|
{
|
|
13520
14220
|
"kind": "Function",
|
|
13521
14221
|
"canonicalReference": "@alloy-js/core!MemberScope:function(1)",
|
|
13522
|
-
"docComment": "/**\n * Declare a member scope, which is a lexical scope whose symbols are provided\n * by the owner symbol.\n *\n * @remarks\n *\n *\n *\n * This is used to create members of a symbol, e.g. for class members and the\n * like. In some languages, this scope may provide symbols which are can be\n * referenced lexically, but in other languages, these members may not be in\n * scope and instead must be referenced via the owner symbol itself.\n */\n",
|
|
14222
|
+
"docComment": "/**\n * Declare a member scope, which is a lexical scope whose symbols are provided\n * by the owner symbol.\n *\n * @remarks\n *\n *\n *\n * This is used to create members of a symbol, e.g. for class members and the\n * like. In some languages, this scope may provide symbols which are can be\n * referenced lexically, but in other languages, these members may not be in\n * scope and instead must be referenced via the owner symbol itself.\n *\n * When called with `name` (without `value`), this delegates to `<Scope>` which\n * creates a `BasicScope`. The same restriction applies: the parent scope must\n * be a `BasicScope`. For custom scope types, create your scope and pass it via\n * the `value` prop.\n */\n",
|
|
13523
14223
|
"excerptTokens": [
|
|
13524
14224
|
{
|
|
13525
14225
|
"kind": "Content",
|
|
@@ -13809,7 +14509,7 @@
|
|
|
13809
14509
|
{
|
|
13810
14510
|
"kind": "Function",
|
|
13811
14511
|
"canonicalReference": "@alloy-js/core!memo:function(1)",
|
|
13812
|
-
"docComment": "",
|
|
14512
|
+
"docComment": "/**\n * Returns a getter caching the result of `fn`. Re-evaluates when reactive\n * dependencies change. See the [Reactivity docs](../../reactivity.md) for details.\n *\n * @param fn - Function to memoize.\n *\n * @param equal - Skip updates when value is unchanged.\n *\n * @param name - Debug label for traces.\n *\n * @returns A zero-argument getter returning the cached value.\n *\n * @example\n * ```ts\n * const fullName = memo(() => `${first.value} ${last.value}`);\n * fullName(); // cached; re-evaluates when first or last changes\n * ```\n *\n */\n",
|
|
13813
14513
|
"excerptTokens": [
|
|
13814
14514
|
{
|
|
13815
14515
|
"kind": "Content",
|
|
@@ -14340,7 +15040,7 @@
|
|
|
14340
15040
|
{
|
|
14341
15041
|
"kind": "Interface",
|
|
14342
15042
|
"canonicalReference": "@alloy-js/core!NameConflictResolver:interface",
|
|
14343
|
-
"docComment": "",
|
|
15043
|
+
"docComment": "/**\n * A callable interface invoked by the binder when two or more symbols in the\n * same scope share a name. The resolver mutates symbol names to eliminate\n * conflicts (e.g., appending `_2`, `_3`).\n *\n * @remarks\n *\n *\n * The resolver is called with the shared `name` and all symbols in the scope\n * that have that original name. Rename a symbol by assigning to `symbol.name`.\n * Symbols with `ignoreNameConflict: true` are excluded. The default resolver\n * keeps the first symbol unchanged and renames subsequent ones\n * `originalName + \"_2\"`, `originalName + \"_3\"`, etc.\n *\n * Assigned names pass through the active name policy before being stored;\n * design suffixes to produce the correct final name after policy\n * transformation, or set `ignoreNamePolicy` on the symbol after resolution.\n *\n * Conflict detection is keyed on `originalName`\n * (see {@link OutputSymbol.originalName}). Symbols that differ in original\n * name but normalize to the same policy-applied name are never detected as\n * conflicting.\n *\n * @example\n * ```ts\n * const resolver: NameConflictResolver = (name, symbols) => {\n * for (let i = 1; i < symbols.length; i++) {\n * symbols[i].name = symbols[i].originalName + \"_\" + (i + 1);\n * }\n * };\n * ```\n *\n */\n",
|
|
14344
15044
|
"excerptTokens": [
|
|
14345
15045
|
{
|
|
14346
15046
|
"kind": "Content",
|
|
@@ -14710,7 +15410,7 @@
|
|
|
14710
15410
|
{
|
|
14711
15411
|
"kind": "MethodSignature",
|
|
14712
15412
|
"canonicalReference": "@alloy-js/core!NamePolicy#for:member(1)",
|
|
14713
|
-
"docComment": "/**\n * Get a function that takes a name and applies the naming policy to it.\n */\n",
|
|
15413
|
+
"docComment": "/**\n * Get a function that takes a name and applies the naming policy to it.\n * When `element` is `undefined`, returns an identity function.\n */\n",
|
|
14714
15414
|
"excerptTokens": [
|
|
14715
15415
|
{
|
|
14716
15416
|
"kind": "Content",
|
|
@@ -14756,7 +15456,7 @@
|
|
|
14756
15456
|
{
|
|
14757
15457
|
"kind": "MethodSignature",
|
|
14758
15458
|
"canonicalReference": "@alloy-js/core!NamePolicy#getName:member(1)",
|
|
14759
|
-
"docComment": "/**\n * Apply the language policy to the provided name for the provided element
|
|
15459
|
+
"docComment": "/**\n * Apply the language policy to the provided name for the provided element type.\n * When `element` is `undefined`, returns `originalName` unchanged.\n */\n",
|
|
14760
15460
|
"excerptTokens": [
|
|
14761
15461
|
{
|
|
14762
15462
|
"kind": "Content",
|
|
@@ -14857,7 +15557,7 @@
|
|
|
14857
15557
|
{
|
|
14858
15558
|
"kind": "Interface",
|
|
14859
15559
|
"canonicalReference": "@alloy-js/core!NamePolicyGetter:interface",
|
|
14860
|
-
"docComment": "",
|
|
15560
|
+
"docComment": "/**\n * A function that transforms a name according to a naming policy for a\n * specific element kind. Obtained from {@link NamePolicy.for}.\n */\n",
|
|
14861
15561
|
"excerptTokens": [
|
|
14862
15562
|
{
|
|
14863
15563
|
"kind": "Content",
|
|
@@ -15145,7 +15845,7 @@
|
|
|
15145
15845
|
{
|
|
15146
15846
|
"kind": "Class",
|
|
15147
15847
|
"canonicalReference": "@alloy-js/core!OutputDeclarationSpace:class",
|
|
15148
|
-
"docComment": "",
|
|
15848
|
+
"docComment": "/**\n * A symbol table attached to an {@link OutputScope}. Holds lexical declarations\n * visible within that scope (e.g., \"types\" or \"values\" in a TypeScript module).\n */\n",
|
|
15149
15849
|
"excerptTokens": [
|
|
15150
15850
|
{
|
|
15151
15851
|
"kind": "Content",
|
|
@@ -15401,7 +16101,7 @@
|
|
|
15401
16101
|
{
|
|
15402
16102
|
"kind": "PropertySignature",
|
|
15403
16103
|
"canonicalReference": "@alloy-js/core!OutputDirectory#path:member",
|
|
15404
|
-
"docComment": "",
|
|
16104
|
+
"docComment": "/**\n * Full path from the output root, e.g. `\"generated-client/src\"`. Do not prepend parent directory paths when walking the tree.\n */\n",
|
|
15405
16105
|
"excerptTokens": [
|
|
15406
16106
|
{
|
|
15407
16107
|
"kind": "Content",
|
|
@@ -15509,7 +16209,7 @@
|
|
|
15509
16209
|
{
|
|
15510
16210
|
"kind": "PropertySignature",
|
|
15511
16211
|
"canonicalReference": "@alloy-js/core!OutputFileBase#path:member",
|
|
15512
|
-
"docComment": "",
|
|
16212
|
+
"docComment": "/**\n * Full path from the output root, e.g. `\"generated-client/src/models.ext\"`. Do not prepend parent directory paths when walking the tree.\n */\n",
|
|
15513
16213
|
"excerptTokens": [
|
|
15514
16214
|
{
|
|
15515
16215
|
"kind": "Content",
|
|
@@ -15539,7 +16239,7 @@
|
|
|
15539
16239
|
{
|
|
15540
16240
|
"kind": "Class",
|
|
15541
16241
|
"canonicalReference": "@alloy-js/core!OutputMemberSpace:class",
|
|
15542
|
-
"docComment": "",
|
|
16242
|
+
"docComment": "/**\n * A symbol table attached to an {@link OutputSymbol}. Holds member declarations\n * belonging to that symbol (e.g., \"static\" or \"instance\" members of a class).\n */\n",
|
|
15543
16243
|
"excerptTokens": [
|
|
15544
16244
|
{
|
|
15545
16245
|
"kind": "Content",
|
|
@@ -15819,15 +16519,16 @@
|
|
|
15819
16519
|
{
|
|
15820
16520
|
"kind": "PropertySignature",
|
|
15821
16521
|
"canonicalReference": "@alloy-js/core!OutputProps#nameConflictResolver:member",
|
|
15822
|
-
"docComment": "/**\n * Policy for handling multiple symbols declared with the same name.\n */\n",
|
|
16522
|
+
"docComment": "/**\n * Policy for handling multiple symbols declared with the same name.\n *\n * @see\n *\n * {@link NameConflictResolver}\n */\n",
|
|
15823
16523
|
"excerptTokens": [
|
|
15824
16524
|
{
|
|
15825
16525
|
"kind": "Content",
|
|
15826
16526
|
"text": "nameConflictResolver?: "
|
|
15827
16527
|
},
|
|
15828
16528
|
{
|
|
15829
|
-
"kind": "
|
|
15830
|
-
"text": "
|
|
16529
|
+
"kind": "Reference",
|
|
16530
|
+
"text": "NameConflictResolver",
|
|
16531
|
+
"canonicalReference": "@alloy-js/core!NameConflictResolver:interface"
|
|
15831
16532
|
},
|
|
15832
16533
|
{
|
|
15833
16534
|
"kind": "Content",
|
|
@@ -15981,7 +16682,7 @@
|
|
|
15981
16682
|
{
|
|
15982
16683
|
"kind": "Constructor",
|
|
15983
16684
|
"canonicalReference": "@alloy-js/core!OutputScope:constructor(1)",
|
|
15984
|
-
"docComment": "/**\n *
|
|
16685
|
+
"docComment": "/**\n * Subclasses must forward all three positional arguments to `super`. See\n * {@link createScope} for the preferred instantiation path.\n *\n * @param name - A descriptive name for this scope (used in debugging and\n * diagnostics).\n *\n * @param parentScope - The parent scope in the scope tree, or `undefined`\n * for root scopes. Inside a component, obtain this via `useScope()`.\n *\n * @param options - Additional scope options; see {@link OutputScopeOptions}.\n *\n * @example\n * ```ts\n * class MyScope extends OutputScope {\n * constructor(\n * name: string,\n * parent: OutputScope | undefined,\n * options?: OutputScopeOptions,\n * ) {\n * super(name, parent, options);\n * }\n * }\n *\n * // Inside a component:\n * const scope = createScope(MyScope, \"my-scope\", useScope());\n * ```\n *\n */\n",
|
|
15985
16686
|
"excerptTokens": [
|
|
15986
16687
|
{
|
|
15987
16688
|
"kind": "Content",
|
|
@@ -16165,7 +16866,7 @@
|
|
|
16165
16866
|
{
|
|
16166
16867
|
"kind": "Property",
|
|
16167
16868
|
"canonicalReference": "@alloy-js/core!OutputScope.declarationSpaces:member",
|
|
16168
|
-
"docComment": "",
|
|
16869
|
+
"docComment": "/**\n * The declaration space keys for this scope type. Subclasses override this\n * to declare which declaration spaces are created on construction (e.g.,\n * `[\"types\", \"values\"]`).\n */\n",
|
|
16169
16870
|
"excerptTokens": [
|
|
16170
16871
|
{
|
|
16171
16872
|
"kind": "Content",
|
|
@@ -16434,7 +17135,7 @@
|
|
|
16434
17135
|
{
|
|
16435
17136
|
"kind": "Method",
|
|
16436
17137
|
"canonicalReference": "@alloy-js/core!OutputScope#spaceFor:member(1)",
|
|
16437
|
-
"docComment": "/**\n * Get the declaration space for the given key.\n */\n",
|
|
17138
|
+
"docComment": "/**\n * Get the declaration space for the given key (e.g., `\"types\"`, `\"values\"`).\n * Returns `undefined` when no space with that key exists on this scope.\n */\n",
|
|
16438
17139
|
"excerptTokens": [
|
|
16439
17140
|
{
|
|
16440
17141
|
"kind": "Content",
|
|
@@ -16662,7 +17363,7 @@
|
|
|
16662
17363
|
{
|
|
16663
17364
|
"kind": "TypeAlias",
|
|
16664
17365
|
"canonicalReference": "@alloy-js/core!OutputSpace:type",
|
|
16665
|
-
"docComment": "",
|
|
17366
|
+
"docComment": "/**\n * A symbol table that belongs to either a scope (declaration space) or a symbol\n * (member space).\n */\n",
|
|
16666
17367
|
"excerptTokens": [
|
|
16667
17368
|
{
|
|
16668
17369
|
"kind": "Content",
|
|
@@ -16698,7 +17399,7 @@
|
|
|
16698
17399
|
{
|
|
16699
17400
|
"kind": "Class",
|
|
16700
17401
|
"canonicalReference": "@alloy-js/core!OutputSymbol:class",
|
|
16701
|
-
"docComment": "/**\n * An output symbol is a named entity that can be referenced in your output\n * code.\n *\n * @remarks\n *\n *\n *\n * This class
|
|
17402
|
+
"docComment": "/**\n * An output symbol is a named entity that can be referenced in your output\n * code.\n *\n * @remarks\n *\n *\n *\n * This is an abstract base class. Language packages must subclass it and\n * implement the abstract {@link OutputSymbol.copy | copy()} method, which\n * creates a clone that tracks the original's name and flags.\n *\n * Subtypes typically add language-specific properties (e.g., accessibility,\n * static/abstract flags). Symbols are reactive values, so you can observe\n * changes to their properties in a reactive context.\n *\n * To construct a scopeless external library symbol — one that resolves via\n * refkey but does not appear in any declaration space — pass `undefined` as\n * the `spaces` constructor argument and supply `{ binder }` in `options`.\n * See {@link OutputSymbolOptions} (`binder` option) and {@link TO_SYMBOL}.\n *\n * @example\n *\n *\n *\n * ```ts\n * import { createSymbol, OutputSymbol, OutputSpace } from \"@alloy-js/core\";\n *\n * class MySymbol extends OutputSymbol {\n * copy() {\n * // getCopyOptions() already includes binder\n * const opts = this.getCopyOptions();\n * const sym = createSymbol(MySymbol, this.name, undefined, opts);\n * this.initializeCopy(sym);\n * return sym;\n * }\n * }\n *\n * // name: string | Namekey; spaces: OutputSpace | OutputSpace[] | undefined; options: OutputSymbolOptions\n * const sym = createSymbol(MySymbol, namekey, scope.symbols, { binder });\n *\n * // Construct a scopeless external library symbol (resolves via refkey only):\n * const extSym = createSymbol(MySymbol, namekey, undefined, { binder });\n * ```\n *\n */\n",
|
|
16702
17403
|
"excerptTokens": [
|
|
16703
17404
|
{
|
|
16704
17405
|
"kind": "Content",
|
|
@@ -16793,7 +17494,7 @@
|
|
|
16793
17494
|
{
|
|
16794
17495
|
"kind": "Constructor",
|
|
16795
17496
|
"canonicalReference": "@alloy-js/core!OutputSymbol:constructor(1)",
|
|
16796
|
-
"docComment": "/**\n * Constructs a new instance of the `OutputSymbol` class\n */\n",
|
|
17497
|
+
"docComment": "/**\n * Constructs a new instance of the `OutputSymbol` class\n *\n * @param name - The symbol name, or a {@link Namekey} carrying name and\n * options (e.g., `ignoreNamePolicy`).\n *\n * @param spaces - The declaration or member space(s) this symbol belongs to.\n * Pass `undefined` for scopeless external library symbols (see `binder` option).\n *\n * @param options - Additional symbol options (binder, refkeys, metadata,\n * type, name policy, etc.).\n */\n",
|
|
16797
17498
|
"excerptTokens": [
|
|
16798
17499
|
{
|
|
16799
17500
|
"kind": "Content",
|
|
@@ -16944,10 +17645,40 @@
|
|
|
16944
17645
|
"isProtected": false,
|
|
16945
17646
|
"isAbstract": false
|
|
16946
17647
|
},
|
|
17648
|
+
{
|
|
17649
|
+
"kind": "Property",
|
|
17650
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol#canonicalName:member",
|
|
17651
|
+
"docComment": "/**\n * The canonical requested name for this symbol: the result of applying the\n * symbol's name policy to its {@link OutputSymbol.originalName | originalName}, or the original name\n * itself when no policy applies. This is the name the symbol would carry if\n * there were no conflicts, and is stable across the symbol's lifetime (it\n * depends only on the immutable `originalName` and the name policy).\n *\n * Used by {@link SymbolTable} as the grouping key for name-conflict\n * resolution, so that symbols whose original names normalize to the same\n * policy-applied name (e.g. `foo_bar` and `fooBar` under camelCase) are\n * recognized as conflicting.\n */\n",
|
|
17652
|
+
"excerptTokens": [
|
|
17653
|
+
{
|
|
17654
|
+
"kind": "Content",
|
|
17655
|
+
"text": "get canonicalName(): "
|
|
17656
|
+
},
|
|
17657
|
+
{
|
|
17658
|
+
"kind": "Content",
|
|
17659
|
+
"text": "string"
|
|
17660
|
+
},
|
|
17661
|
+
{
|
|
17662
|
+
"kind": "Content",
|
|
17663
|
+
"text": ";"
|
|
17664
|
+
}
|
|
17665
|
+
],
|
|
17666
|
+
"isReadonly": true,
|
|
17667
|
+
"isOptional": false,
|
|
17668
|
+
"releaseTag": "Public",
|
|
17669
|
+
"name": "canonicalName",
|
|
17670
|
+
"propertyTypeTokenRange": {
|
|
17671
|
+
"startIndex": 1,
|
|
17672
|
+
"endIndex": 2
|
|
17673
|
+
},
|
|
17674
|
+
"isStatic": false,
|
|
17675
|
+
"isProtected": false,
|
|
17676
|
+
"isAbstract": false
|
|
17677
|
+
},
|
|
16947
17678
|
{
|
|
16948
17679
|
"kind": "Method",
|
|
16949
17680
|
"canonicalReference": "@alloy-js/core!OutputSymbol#copy:member(1)",
|
|
16950
|
-
"docComment": "/**\n *
|
|
17681
|
+
"docComment": "/**\n * Create a clone of this symbol whose name and flags reactively track the\n * original.\n *\n * @remarks\n *\n *\n *\n * Called by `SymbolTable.copyTo` during scope/space transfers.\n * Subclasses implement cloning logic and call `getCopyOptions` for\n * base options and `initializeCopy` to wire up member copying and\n * name tracking.\n *\n * **Space registration contract:** The returned clone must not be registered\n * in any space on exit. `copyToSpace()` calls this method and assigns the\n * space afterward.\n */\n",
|
|
16951
17682
|
"excerptTokens": [
|
|
16952
17683
|
{
|
|
16953
17684
|
"kind": "Content",
|
|
@@ -17028,7 +17759,7 @@
|
|
|
17028
17759
|
{
|
|
17029
17760
|
"kind": "Method",
|
|
17030
17761
|
"canonicalReference": "@alloy-js/core!OutputSymbol#copyToSpace:member(1)",
|
|
17031
|
-
"docComment": "",
|
|
17762
|
+
"docComment": "/**\n * Copy this symbol into the given space. Calls {@link OutputSymbol.copy} and places\n * the result in `space`, then returns the copy.\n *\n * @param space - The space to place the copy in.\n *\n * @returns The copy of this symbol, now belonging to `space`.\n */\n",
|
|
17032
17763
|
"excerptTokens": [
|
|
17033
17764
|
{
|
|
17034
17765
|
"kind": "Content",
|
|
@@ -17142,6 +17873,36 @@
|
|
|
17142
17873
|
"isProtected": false,
|
|
17143
17874
|
"isAbstract": false
|
|
17144
17875
|
},
|
|
17876
|
+
{
|
|
17877
|
+
"kind": "Property",
|
|
17878
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol#deconflictedName:member",
|
|
17879
|
+
"docComment": "/**\n * The name assigned by a name-conflict resolver, or `undefined` when the\n * symbol is not currently renamed by conflict resolution.\n *\n * Resolvers should assign to this slot (rather than `name`) to record that a\n * rename exists only because of a conflict. On re-deconfliction (e.g. after\n * a conflicting symbol is removed), resolvers clear this slot by assigning\n * `undefined`; the effective {@link OutputSymbol.name | name} then falls back to the\n * user-assigned name, which in turn falls back to the original name.\n *\n * Name policy is applied to values written here (unless `ignoreNamePolicy`\n * is true), matching `name`'s behavior.\n *\n *\n * @reactive\n */\n",
|
|
17880
|
+
"excerptTokens": [
|
|
17881
|
+
{
|
|
17882
|
+
"kind": "Content",
|
|
17883
|
+
"text": "get deconflictedName(): "
|
|
17884
|
+
},
|
|
17885
|
+
{
|
|
17886
|
+
"kind": "Content",
|
|
17887
|
+
"text": "string | undefined"
|
|
17888
|
+
},
|
|
17889
|
+
{
|
|
17890
|
+
"kind": "Content",
|
|
17891
|
+
"text": ";\n\nset deconflictedName(value: string | undefined);"
|
|
17892
|
+
}
|
|
17893
|
+
],
|
|
17894
|
+
"isReadonly": false,
|
|
17895
|
+
"isOptional": false,
|
|
17896
|
+
"releaseTag": "Public",
|
|
17897
|
+
"name": "deconflictedName",
|
|
17898
|
+
"propertyTypeTokenRange": {
|
|
17899
|
+
"startIndex": 1,
|
|
17900
|
+
"endIndex": 2
|
|
17901
|
+
},
|
|
17902
|
+
"isStatic": false,
|
|
17903
|
+
"isProtected": false,
|
|
17904
|
+
"isAbstract": false
|
|
17905
|
+
},
|
|
17145
17906
|
{
|
|
17146
17907
|
"kind": "Method",
|
|
17147
17908
|
"canonicalReference": "@alloy-js/core!OutputSymbol#delete:member(1)",
|
|
@@ -17354,7 +18115,7 @@
|
|
|
17354
18115
|
{
|
|
17355
18116
|
"kind": "Method",
|
|
17356
18117
|
"canonicalReference": "@alloy-js/core!OutputSymbol#initializeCopy:member(1)",
|
|
17357
|
-
"docComment": "",
|
|
18118
|
+
"docComment": "/**\n * Wires up reactive member-space copying and name tracking from this symbol\n * to its `copy`.\n *\n * @remarks\n *\n *\n *\n * Iterates each member space and calls `copyTo` on the corresponding space\n * on `copy`. Then installs a reactive watcher so that any future change to\n * `this.name` is immediately mirrored onto `copy.name`.\n *\n * **Must be called by every `copy()` override** before the override returns.\n * Pair with `getCopyOptions` to supply the base constructor options.\n */\n",
|
|
17358
18119
|
"excerptTokens": [
|
|
17359
18120
|
{
|
|
17360
18121
|
"kind": "Content",
|
|
@@ -17641,7 +18402,7 @@
|
|
|
17641
18402
|
{
|
|
17642
18403
|
"kind": "Property",
|
|
17643
18404
|
"canonicalReference": "@alloy-js/core!OutputSymbol.memberSpaces:member",
|
|
17644
|
-
"docComment": "",
|
|
18405
|
+
"docComment": "/**\n * The member space keys for this symbol type. Subclasses override this to\n * declare which member spaces are created on construction (e.g.,\n * `[\"static\", \"instance\"]`).\n */\n",
|
|
17645
18406
|
"excerptTokens": [
|
|
17646
18407
|
{
|
|
17647
18408
|
"kind": "Content",
|
|
@@ -17795,7 +18556,7 @@
|
|
|
17795
18556
|
{
|
|
17796
18557
|
"kind": "Property",
|
|
17797
18558
|
"canonicalReference": "@alloy-js/core!OutputSymbol#name:member",
|
|
17798
|
-
"docComment": "/**\n * The name of this symbol.\n *\n *\n * @reactive\n */\n",
|
|
18559
|
+
"docComment": "/**\n * The name of this symbol. Assigning to this property applies the active\n * name policy (unless `ignoreNamePolicy` is true) before storing the value.\n *\n * The effective name is computed as `deconflictedName ?? userName`, so if a\n * name-conflict resolver has assigned a {@link OutputSymbol.deconflictedName | deconflictedName}, that value\n * is returned here; otherwise the value most recently assigned to `name` is\n * returned.\n *\n *\n * @reactive\n */\n",
|
|
17799
18560
|
"excerptTokens": [
|
|
17800
18561
|
{
|
|
17801
18562
|
"kind": "Content",
|
|
@@ -18253,7 +19014,7 @@
|
|
|
18253
19014
|
{
|
|
18254
19015
|
"kind": "PropertySignature",
|
|
18255
19016
|
"canonicalReference": "@alloy-js/core!OutputSymbolOptions#binder:member",
|
|
18256
|
-
"docComment": "/**\n * The binder instance associated with this symbol. Symbol updates and changes\n * will be reported to this binder. This binder will be able to find this\n * symbol via its refkey and other means. Without a binder, this symbol will\n * be unbound, which means it cannot be referenced by refkey.\n */\n",
|
|
19017
|
+
"docComment": "/**\n * The binder instance associated with this symbol. Symbol updates and changes\n * will be reported to this binder. This binder will be able to find this\n * symbol via its refkey and other means. Without a binder, this symbol will\n * be unbound, which means it cannot be referenced by refkey.\n *\n * @remarks\n *\n *\n *\n * When constructing an external library symbol, pass `{ binder }` here to\n * ensure the symbol is registered with the binder. See {@link TO_SYMBOL} for\n * the full implementation protocol.\n */\n",
|
|
18257
19018
|
"excerptTokens": [
|
|
18258
19019
|
{
|
|
18259
19020
|
"kind": "Content",
|
|
@@ -18335,7 +19096,7 @@
|
|
|
18335
19096
|
{
|
|
18336
19097
|
"kind": "PropertySignature",
|
|
18337
19098
|
"canonicalReference": "@alloy-js/core!OutputSymbolOptions#lazyMemberInitializer:member",
|
|
18338
|
-
"docComment": "/**\n * Provide a function which lazy-initializes members
|
|
19099
|
+
"docComment": "/**\n * Provide a function which lazy-initializes members the first time\n * `resolveMemberByName()` is called on this symbol. Called at most once.\n *\n * @remarks\n *\n *\n *\n * Only `resolveMemberByName()` triggers this callback — iterating\n * `OutputMemberSpace` directly does not. The callback fires regardless of\n * whether the symbol belongs to any scope, so it is safe to use on scopeless\n * external library symbols.\n */\n",
|
|
18339
19100
|
"excerptTokens": [
|
|
18340
19101
|
{
|
|
18341
19102
|
"kind": "Content",
|
|
@@ -19223,6 +19984,67 @@
|
|
|
19223
19984
|
],
|
|
19224
19985
|
"extendsTokenRanges": []
|
|
19225
19986
|
},
|
|
19987
|
+
{
|
|
19988
|
+
"kind": "Function",
|
|
19989
|
+
"canonicalReference": "@alloy-js/core!reactivePropertyRefId:function(1)",
|
|
19990
|
+
"docComment": "/**\n * Get a stable ref ID for a property of a reactive object.\n * Each (target, key) pair gets a unique positive ID from the same counter as refs.\n */\n",
|
|
19991
|
+
"excerptTokens": [
|
|
19992
|
+
{
|
|
19993
|
+
"kind": "Content",
|
|
19994
|
+
"text": "export declare function reactivePropertyRefId(target: "
|
|
19995
|
+
},
|
|
19996
|
+
{
|
|
19997
|
+
"kind": "Content",
|
|
19998
|
+
"text": "object"
|
|
19999
|
+
},
|
|
20000
|
+
{
|
|
20001
|
+
"kind": "Content",
|
|
20002
|
+
"text": ", key: "
|
|
20003
|
+
},
|
|
20004
|
+
{
|
|
20005
|
+
"kind": "Content",
|
|
20006
|
+
"text": "string | number"
|
|
20007
|
+
},
|
|
20008
|
+
{
|
|
20009
|
+
"kind": "Content",
|
|
20010
|
+
"text": "): "
|
|
20011
|
+
},
|
|
20012
|
+
{
|
|
20013
|
+
"kind": "Content",
|
|
20014
|
+
"text": "number"
|
|
20015
|
+
},
|
|
20016
|
+
{
|
|
20017
|
+
"kind": "Content",
|
|
20018
|
+
"text": ";"
|
|
20019
|
+
}
|
|
20020
|
+
],
|
|
20021
|
+
"fileUrlPath": "src/reactivity.ts",
|
|
20022
|
+
"returnTypeTokenRange": {
|
|
20023
|
+
"startIndex": 5,
|
|
20024
|
+
"endIndex": 6
|
|
20025
|
+
},
|
|
20026
|
+
"releaseTag": "Public",
|
|
20027
|
+
"overloadIndex": 1,
|
|
20028
|
+
"parameters": [
|
|
20029
|
+
{
|
|
20030
|
+
"parameterName": "target",
|
|
20031
|
+
"parameterTypeTokenRange": {
|
|
20032
|
+
"startIndex": 1,
|
|
20033
|
+
"endIndex": 2
|
|
20034
|
+
},
|
|
20035
|
+
"isOptional": false
|
|
20036
|
+
},
|
|
20037
|
+
{
|
|
20038
|
+
"parameterName": "key",
|
|
20039
|
+
"parameterTypeTokenRange": {
|
|
20040
|
+
"startIndex": 3,
|
|
20041
|
+
"endIndex": 4
|
|
20042
|
+
},
|
|
20043
|
+
"isOptional": false
|
|
20044
|
+
}
|
|
20045
|
+
],
|
|
20046
|
+
"name": "reactivePropertyRefId"
|
|
20047
|
+
},
|
|
19226
20048
|
{
|
|
19227
20049
|
"kind": "Class",
|
|
19228
20050
|
"canonicalReference": "@alloy-js/core!ReactiveUnionSet:class",
|
|
@@ -20406,14 +21228,6 @@
|
|
|
20406
21228
|
"kind": "Content",
|
|
20407
21229
|
"text": "<unknown>"
|
|
20408
21230
|
},
|
|
20409
|
-
{
|
|
20410
|
-
"kind": "Content",
|
|
20411
|
-
"text": ", isInfrastructure?: "
|
|
20412
|
-
},
|
|
20413
|
-
{
|
|
20414
|
-
"kind": "Content",
|
|
20415
|
-
"text": "boolean"
|
|
20416
|
-
},
|
|
20417
21231
|
{
|
|
20418
21232
|
"kind": "Content",
|
|
20419
21233
|
"text": "): "
|
|
@@ -20429,8 +21243,8 @@
|
|
|
20429
21243
|
],
|
|
20430
21244
|
"fileUrlPath": "src/reactivity.ts",
|
|
20431
21245
|
"returnTypeTokenRange": {
|
|
20432
|
-
"startIndex":
|
|
20433
|
-
"endIndex":
|
|
21246
|
+
"startIndex": 4,
|
|
21247
|
+
"endIndex": 5
|
|
20434
21248
|
},
|
|
20435
21249
|
"releaseTag": "Public",
|
|
20436
21250
|
"overloadIndex": 1,
|
|
@@ -20442,14 +21256,6 @@
|
|
|
20442
21256
|
"endIndex": 3
|
|
20443
21257
|
},
|
|
20444
21258
|
"isOptional": false
|
|
20445
|
-
},
|
|
20446
|
-
{
|
|
20447
|
-
"parameterName": "isInfrastructure",
|
|
20448
|
-
"parameterTypeTokenRange": {
|
|
20449
|
-
"startIndex": 4,
|
|
20450
|
-
"endIndex": 5
|
|
20451
|
-
},
|
|
20452
|
-
"isOptional": true
|
|
20453
21259
|
}
|
|
20454
21260
|
],
|
|
20455
21261
|
"name": "refId"
|
|
@@ -21036,7 +21842,7 @@
|
|
|
21036
21842
|
{
|
|
21037
21843
|
"kind": "Interface",
|
|
21038
21844
|
"canonicalReference": "@alloy-js/core!ResolutionResult:interface",
|
|
21039
|
-
"docComment": "/**\n * A successful resolution of a refkey.\n *\n * @example\n *\n *\n *\n * Let's say we have the following scopes and symbols:\n *\n * ```\n * scope: global scope\n * ├── scope: namespace scope 1\n * │ └── symbol: foo\n * │ └── static members\n * │ └── symbol: bar\n * └── scope: namespace scope 2\n * └── (resolve bar from here)\n * ```\n *\n *\n * When we resolve the refkey for `bar` from within `namespace scope 2`, we will get the following\n * resolution result:\n *\n * * **targetDeclaration**: symbol bar, the symbol we resolved.\n * * **commonScope**: global scope, because this is the most specific scope that contains both the declaration and the reference.\n * * **pathUp**: [namespace scope 2], because this is the scope between the reference and the common scope.\n * * **pathDown**: [namespace scope 1], because this is the scope between the common scope and the declaration\n * * **memberPath**: [
|
|
21845
|
+
"docComment": "/**\n * A successful resolution of a refkey.\n *\n * @example\n *\n *\n *\n * Let's say we have the following scopes and symbols:\n *\n * ```\n * scope: global scope\n * ├── scope: namespace scope 1\n * │ └── symbol: foo\n * │ └── static members\n * │ └── symbol: bar\n * └── scope: namespace scope 2\n * └── (resolve bar from here)\n * ```\n *\n *\n * When we resolve the refkey for `bar` from within `namespace scope 2`, we will get the following\n * resolution result:\n *\n * * **targetDeclaration**: symbol bar, the symbol we resolved.\n * * **commonScope**: global scope, because this is the most specific scope that contains both the declaration and the reference.\n * * **pathUp**: [namespace scope 2], because this is the scope between the reference and the common scope.\n * * **pathDown**: [namespace scope 1], because this is the scope between the common scope and the declaration\n * * **memberPath**: [bar]\n * * **lexicalDeclaration**: foo\n * For deeper chains (e.g., foo.bar.baz where bar and baz are member symbols, foo is not): memberPath = [bar, baz], lexicalDeclaration = foo.\n */\n",
|
|
21040
21846
|
"excerptTokens": [
|
|
21041
21847
|
{
|
|
21042
21848
|
"kind": "Content",
|
|
@@ -21201,7 +22007,7 @@
|
|
|
21201
22007
|
{
|
|
21202
22008
|
"kind": "PropertySignature",
|
|
21203
22009
|
"canonicalReference": "@alloy-js/core!ResolutionResult#memberPath:member",
|
|
21204
|
-
"docComment": "/**\n *
|
|
22010
|
+
"docComment": "/**\n * Member symbols from the lexical declaration (exclusive) to the resolved symbol\n * (inclusive). Empty when resolving a non-member symbol.\n */\n",
|
|
21205
22011
|
"excerptTokens": [
|
|
21206
22012
|
{
|
|
21207
22013
|
"kind": "Content",
|
|
@@ -21809,7 +22615,7 @@
|
|
|
21809
22615
|
{
|
|
21810
22616
|
"kind": "Function",
|
|
21811
22617
|
"canonicalReference": "@alloy-js/core!Scope:function(1)",
|
|
21812
|
-
"docComment": "/**\n * Declare a scope for this component's children. Any symbols and scopes\n * declared in the children of this component will be in this scope.\n *\n * @see\n *\n * {@link ScopeContext}\n */\n",
|
|
22618
|
+
"docComment": "/**\n * Declare a scope for this component's children. Any symbols and scopes\n * declared in the children of this component will be in this scope.\n *\n * @remarks\n *\n *\n *\n * When called with `name` (without `value`), this creates a `BasicScope`. The\n * parent scope must also be a `BasicScope`; for custom scope types, create your\n * scope and pass it via the `value` prop instead.\n *\n * @see\n *\n * {@link ScopeContext}\n */\n",
|
|
21813
22619
|
"excerptTokens": [
|
|
21814
22620
|
{
|
|
21815
22621
|
"kind": "Content",
|
|
@@ -22217,6 +23023,14 @@
|
|
|
22217
23023
|
"kind": "Content",
|
|
22218
23024
|
"text": "T"
|
|
22219
23025
|
},
|
|
23026
|
+
{
|
|
23027
|
+
"kind": "Content",
|
|
23028
|
+
"text": ", options?: "
|
|
23029
|
+
},
|
|
23030
|
+
{
|
|
23031
|
+
"kind": "Content",
|
|
23032
|
+
"text": "{\n label?: string;\n}"
|
|
23033
|
+
},
|
|
22220
23034
|
{
|
|
22221
23035
|
"kind": "Content",
|
|
22222
23036
|
"text": "): "
|
|
@@ -22237,8 +23051,8 @@
|
|
|
22237
23051
|
],
|
|
22238
23052
|
"fileUrlPath": "src/reactivity.ts",
|
|
22239
23053
|
"returnTypeTokenRange": {
|
|
22240
|
-
"startIndex":
|
|
22241
|
-
"endIndex":
|
|
23054
|
+
"startIndex": 5,
|
|
23055
|
+
"endIndex": 7
|
|
22242
23056
|
},
|
|
22243
23057
|
"releaseTag": "Public",
|
|
22244
23058
|
"overloadIndex": 1,
|
|
@@ -22250,6 +23064,14 @@
|
|
|
22250
23064
|
"endIndex": 2
|
|
22251
23065
|
},
|
|
22252
23066
|
"isOptional": true
|
|
23067
|
+
},
|
|
23068
|
+
{
|
|
23069
|
+
"parameterName": "options",
|
|
23070
|
+
"parameterTypeTokenRange": {
|
|
23071
|
+
"startIndex": 3,
|
|
23072
|
+
"endIndex": 4
|
|
23073
|
+
},
|
|
23074
|
+
"isOptional": true
|
|
22253
23075
|
}
|
|
22254
23076
|
],
|
|
22255
23077
|
"typeParameters": [
|
|
@@ -22663,7 +23485,7 @@
|
|
|
22663
23485
|
{
|
|
22664
23486
|
"kind": "Variable",
|
|
22665
23487
|
"canonicalReference": "@alloy-js/core!SourceDirectoryContext:var",
|
|
22666
|
-
"docComment": "",
|
|
23488
|
+
"docComment": "/**\n * Always provided by `<Output>` — `useContext(SourceDirectoryContext)` is\n * never `undefined` inside an `<Output>` tree. At the root of the tree,\n * `path` equals the `basePath` prop on `<Output>` (default `\"./\"`); nested\n * `<SourceDirectory>` components update `path` relative to their parent.\n *\n * @see\n *\n * {@link Output}\n *\n * @see\n *\n * {@link SourceDirectory}\n */\n",
|
|
22667
23489
|
"excerptTokens": [
|
|
22668
23490
|
{
|
|
22669
23491
|
"kind": "Content",
|
|
@@ -23022,7 +23844,7 @@
|
|
|
23022
23844
|
{
|
|
23023
23845
|
"kind": "PropertySignature",
|
|
23024
23846
|
"canonicalReference": "@alloy-js/core!SourceFileProps#filetype:member",
|
|
23025
|
-
"docComment": "/**\n * The type of contents in this file.\n */\n",
|
|
23847
|
+
"docComment": "/**\n * The type of contents in this file.\n *\n * @remarks\n *\n *\n * This is a metadata hint only. It does not trigger formatting or content\n * processing. The value is forwarded to debug tooling and the\n * `ContentOutputFile` output metadata.\n */\n",
|
|
23026
23848
|
"excerptTokens": [
|
|
23027
23849
|
{
|
|
23028
23850
|
"kind": "Content",
|
|
@@ -23049,7 +23871,7 @@
|
|
|
23049
23871
|
{
|
|
23050
23872
|
"kind": "PropertySignature",
|
|
23051
23873
|
"canonicalReference": "@alloy-js/core!SourceFileProps#header:member",
|
|
23052
|
-
"docComment": "/**\n *
|
|
23874
|
+
"docComment": "/**\n * Content rendered before the file body, separated from it by a hard line\n * break. The separator is emitted whenever `header` is not `undefined` —\n * including when it is an empty string or a component that renders nothing.\n * To suppress both the header and the separator, omit this prop entirely.\n *\n * @example\n * ```tsx\n * // Omitting `header` suppresses both header and separator:\n * <SourceFile filetype=\"txt\" path=\"output/data.txt\">\n * {children}\n * </SourceFile>\n *\n * // An empty string still emits the separator newline:\n * <SourceFile filetype=\"txt\" path=\"output/data.txt\" header=\"\">\n * {children}\n * </SourceFile>\n * ```\n *\n */\n",
|
|
23053
23875
|
"excerptTokens": [
|
|
23054
23876
|
{
|
|
23055
23877
|
"kind": "Content",
|
|
@@ -24278,7 +25100,7 @@
|
|
|
24278
25100
|
{
|
|
24279
25101
|
"kind": "Interface",
|
|
24280
25102
|
"canonicalReference": "@alloy-js/core!SymbolCreator:interface",
|
|
24281
|
-
"docComment": "",
|
|
25103
|
+
"docComment": "/**\n * An object that can register symbols into a binder. Pass instances to the\n * `externals` prop of `<Output>` to make library symbols resolvable.\n *\n * @remarks\n *\n *\n * `SymbolCreator` is a low-level core mechanism for eager symbol registration.\n * The recommended pattern for language packages is lazy self-registration:\n * implement `[TO_SYMBOL]()` on descriptors to call `useBinder()`, create and\n * cache symbols per binder via a `WeakMap`, and register them into the\n * appropriate scope automatically. This approach does not require `externals`.\n * See the C# package's `createLibrary()` for a reference implementation.\n *\n * See {@link TO_SYMBOL} and {@link REFKEYABLE}.\n */\n",
|
|
24282
25104
|
"excerptTokens": [
|
|
24283
25105
|
{
|
|
24284
25106
|
"kind": "Content",
|
|
@@ -26108,7 +26930,7 @@
|
|
|
26108
26930
|
{
|
|
26109
26931
|
"kind": "Variable",
|
|
26110
26932
|
"canonicalReference": "@alloy-js/core!TO_SYMBOL:var",
|
|
26111
|
-
"docComment": "",
|
|
26933
|
+
"docComment": "/**\n * Well-known symbol for the lazy-symbol-creation protocol used by external\n * library descriptors. Objects implementing `[TO_SYMBOL]()` are recognized as\n * {@link LibrarySymbolReference} values that can be passed anywhere a refkey\n * is accepted.\n *\n * @remarks\n *\n *\n *\n * Implement `[TO_SYMBOL]()` on a descriptor object to register it as a\n * referenceable library symbol. Inside the method:\n *\n * 1. Call {@link useBinder} to get the current binder context.\n * 2. Look up (or create) the symbol for that binder in a\n * `WeakMap<object, OutputSymbol>` (use a sentinel object for the\n * no-binder case, since `WeakMap` keys must be objects).\n * 3. On first creation, construct the symbol and register it into the\n * appropriate space for your library, passing `{ binder }`\n * (see {@link OutputSymbolOptions.binder}).\n *\n * The method is called by language package code each time the descriptor is\n * used as a reference (e.g. inside `ref()`). It is NOT called by the binder\n * itself.\n *\n * @example\n *\n *\n *\n * ```ts\n * const defaultKey = {};\n * const symbols = new WeakMap<object, MySymbol>();\n * const descriptor: LibrarySymbolReference = {\n * [REFKEYABLE]() {\n * return descriptor[TO_SYMBOL]().refkeys[0];\n * },\n * [TO_SYMBOL]() {\n * const binder = useBinder();\n * const key = binder ?? defaultKey;\n * let sym = symbols.get(key);\n * if (!sym) {\n * sym = new MySymbol(\"SomeType\", space, { binder });\n * symbols.set(key, sym);\n * }\n * return sym;\n * },\n * };\n * ```\n *\n */\n",
|
|
26112
26934
|
"excerptTokens": [
|
|
26113
26935
|
{
|
|
26114
26936
|
"kind": "Content",
|
|
@@ -26726,7 +27548,7 @@
|
|
|
26726
27548
|
{
|
|
26727
27549
|
"kind": "Function",
|
|
26728
27550
|
"canonicalReference": "@alloy-js/core!useBinder:function(1)",
|
|
26729
|
-
"docComment": "",
|
|
27551
|
+
"docComment": "/**\n * Returns the current {@link Binder} from context, or `undefined` if no\n * binder is available. The binder is provided by the {@link Output} component.\n */\n",
|
|
26730
27552
|
"excerptTokens": [
|
|
26731
27553
|
{
|
|
26732
27554
|
"kind": "Content",
|
|
@@ -27006,7 +27828,7 @@
|
|
|
27006
27828
|
{
|
|
27007
27829
|
"kind": "Function",
|
|
27008
27830
|
"canonicalReference": "@alloy-js/core!useScope:function(1)",
|
|
27009
|
-
"docComment": "",
|
|
27831
|
+
"docComment": "/**\n * Returns the current {@link OutputScope} from context. Must be called inside\n * a component that is a descendant of a `<Scope>` provider.\n */\n",
|
|
27010
27832
|
"excerptTokens": [
|
|
27011
27833
|
{
|
|
27012
27834
|
"kind": "Content",
|