Simplify get_builtins
to only return top-level built-in declarations #362
No reviewers
Labels
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: M-Labs/nac3#362
Loading…
Reference in New Issue
No description provided.
Delete Branch "enhance/infer-builtins-list"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The top-level builtin declaration list is used at multiple places, but the names are only used at one location (
TopLevelComposer::new
). This change also has the effect of allowingOption
to be used as a class name, as previouslyOption
is not registered in theTopLevelComposer
due to how the names of builtins are processed.