1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
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, } } }