1
0
mirror of https://github.com/nushell/nushell.git synced 2025-06-15 14:36:54 +02: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,
}
}
}