nushell/crates/nu-protocol/src/variable.rs
2023-07-14 00:02:05 +03:00

20 lines
412 B
Rust

use crate::{Span, Type, Value};
#[derive(Clone, Debug)]
pub struct Variable {
pub declaration_span: Span,
pub ty: Type,
pub mutable: bool,
pub const_val: Option<Value>,
}
impl Variable {
pub fn new(declaration_span: Span, ty: Type, mutable: bool) -> Variable {
Self {
declaration_span,
ty,
mutable,
const_val: None,
}
}
}