src/compiler/lib.rs is a stale, uncompiled duplicate of the crate-root API #24
Labels
No labels
automated-🤖
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
Hemera/nomo#24
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
src/compiler/lib.rsis a leftover copy of the crate's top-level API (Nomo,Context,resume_after_cut, etc.). It is never compiled — thecompilermodule is resolved fromsrc/compiler/mod.rs— and it is already out of sync (e.g. it callsparser::parse(parse.tokens())with the old signature, while the real parser takes(source, tokens)).It can confuse readers and editors (two definitions of the same types with different shapes). Recommend deleting it.