use crate::ast::*; impl AST { pub fn compact_debug(&self) -> String { format!("{:?}", self) } pub fn expanded_debug(&self) -> String { format!("{:#?}", self) } }