Files
nushell/crates/nu-protocol/src/variable.rs
2022-03-09 04:42:19 -05:00

17 lines
283 B
Rust

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,
}
}
}