You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rust supports two syntaxes for mod - one for declaring inline a module and another for referencing the contents of another file. We don't currently try to go follow those files (since that requires IO and parsing is otherwise pure).
Add an IO based parse that chases down mod ...; items to expand them
Think about what to do in tests (right now, I have to manually take out mod ...; forms to make the difference tests pass
The text was updated successfully, but these errors were encountered:
Rust supports two syntaxes for
mod
- one for declaring inline a module and another for referencing the contents of another file. We don't currently try to go follow those files (since that requiresIO
and parsing is otherwise pure).IO
based parse that chases downmod ...;
items to expand themmod ...;
forms to make the difference tests passThe text was updated successfully, but these errors were encountered: