nushell/crates/nu-protocol/src/variable.rs

17 lines
283 B
Rust
Raw Normal View History

2022-03-09 10:42:19 +01:00
use crate::{Span, Type};
#[derive(Clone, Debug)]
pub struct Variable {
pub declaration_span: Span,
pub ty: Type,
}
impl Variable {
pub fn new(declaration_span: Span, ty: Type) -> Variable {
Self {
declaration_span,
ty,
}
}
}