pub trait AstNode: Debug + PartialEq + Clone + Spanned { const TYPE: &'static str; }
A trait for ast nodes.