Files
schala/schala-lang/language/src/debugging.rs
2019-08-12 09:51:36 -07:00

11 lines
179 B
Rust

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