mirror of
https://github.com/nushell/nushell.git
synced 2025-05-20 06:33:21 +00:00
It's no longer attached to a Block. Makes access to overlays more streamlined by removing this one indirection. Also makes it easier to create standalone overlays without a block which might come in handy.
5 lines
103 B
Rust
5 lines
103 B
Rust
pub type VarId = usize;
|
|
pub type DeclId = usize;
|
|
pub type BlockId = usize;
|
|
pub type OverlayId = usize;
|