mirror of
https://github.com/nushell/nushell.git
synced 2024-12-28 09:59:36 +01:00
f8f437b060
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;
|