//! Output format implementations for AST and token serialization
//!
//! This module contains different format implementations for serializing:
//! - AST Documents to various output formats (tag, treeviz)
//! - Token streams back to source text (detokenizer)
pub mod detokenizer;
pub mod registry;
pub mod tag;
pub mod treeviz;
pub use detokenizer::{detokenize, ToLexString};
pub use registry::{FormatError, FormatRegistry, Formatter};
pub use tag::{serialize_document as serialize_ast_tag, TagFormatter};
pub use treeviz::{to_treeviz_str, TreevizFormatter};