- Add distance-based get_at on EnvironmentStack - Add distance-based assign_at on EnvironmentStack - Introduce ErrorSink to accumulate diagnostics across passes - Implement Resolver with a ScopeStack and per-node distance map - Extend interpreter to store locals distances for runtime lookup - Add tests for resolution behavior and error accumulation Add static variable resolution with scope tracking
4 lines
69 B
Rust
Executable File
4 lines
69 B
Rust
Executable File
pub mod scope_stack;
|
|
pub mod variable_resolution;
|
|
pub mod visit_ast;
|