#![doc = include_str!("readme.md")]
use crate::ast::AdaRoot;
pub struct AdaFormatter;
impl AdaFormatter {
pub fn new() -> Self {
Self
}
pub fn format(&self, source: &str) -> String {
self.basic_format(source)
}
fn basic_format(&self, source: &str) -> String {
source.to_string()
}
pub fn format_root(&self, _root: &AdaRoot) -> String {
"TODO: Implement Ada AST formatting".to_string()
}
}
impl Default for AdaFormatter {
fn default() -> Self {
Self::new()
}
}