Compile scoped expressions with SymbolSource compatibility - #96
Draft
robertvansteen wants to merge 11 commits into
Draft
Compile scoped expressions with SymbolSource compatibility#96robertvansteen wants to merge 11 commits into
robertvansteen wants to merge 11 commits into
Conversation
A declaration answered two questions from one fact: whether a value may be absent, and whether the caller must supply one at all. The second was derived from the first, so an absence-admitting type could always be omitted — and a host with a "no value" answer could not tell the chosen answer from no answer yet. Input splits them. Input::of(Type) is the reading a bare Type already has; Input::demanded(Type) keeps what the type says about absence and overrides what it says about supply. Declarations normalize to Inputs at ingestion, so inference is handed the same Type map as before. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
robertvansteen
force-pushed
the
STRAT-733-symbol-compat-subprogram
branch
from
August 17, 2026 12:19
ba2080e to
965e7fe
Compare
robertvansteen
force-pushed
the
STRAT-733-symbol-compat-subprogram
branch
from
August 17, 2026 13:21
965e7fe to
3e2c160
Compare
robertvansteen
force-pushed
the
demanded-inputs
branch
from
August 18, 2026 15:20
0c7bae4 to
2e32b4e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ScopedExpressioncompilation and evaluation for separately bound source bodiesSymbolSourcecompatibility, including namespaced member chains, while normalizing dependency identity toReferencePathWhy
Some Axiom hosts need to compile a source body once and evaluate it repeatedly against a separately bound local record.
ScopedExpressionprovides that lexical boundary without inventing another path representation or weakening the outer program's dependency analysis.This capability is independent of Product Catalogue's Axiom #93 migration. It is stacked on #93 only because it extends the structural declaration and reference model introduced there.
Validation
Depends on #93.