#![doc = include_str!("readme.md")]
use crate::ast::DRoot;
pub struct DFormatter {}
impl DFormatter {
pub fn new() -> Self {
Self {}
}
pub fn format(&self, source: &str) -> String {
source.to_string()
}
pub fn format_ast(&self, _root: &DRoot) -> String {
String::new()
}
}
impl Default for DFormatter {
fn default() -> Self {
Self::new()
}
}