nushell/crates/nu-protocol/src/id.rs
2023-05-23 23:48:50 +03:00

8 lines
187 B
Rust

pub type VarId = usize;
pub type DeclId = usize;
pub type BlockId = usize;
pub type ModuleId = usize;
pub type OverlayId = usize;
pub type FileId = usize;
pub type VirtualPathId = usize;