pub type SNode = Spanned<Node>;
A spanned AST node — the primary unit throughout the compiler.
pub struct SNode { pub node: Node, pub span: Span, }
node: Node
span: Span