mirror of
https://github.com/nushell/nushell
synced 2025-01-04 01:09:05 +00:00
16 lines
283 B
Rust
16 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,
|
|
}
|
|
}
|
|
}
|