//! Lossless Scheme S-expression parser and editor (toml_edit-style CST).
//!
//! Every byte of the source (whitespace, comments, escapes) is stored in the
//! tree, so `parse(s).to_string() == s` holds by construction; edits splice
//! in new nodes while untouched regions survive verbatim.
//!
//! ```
//! use scheme_edit::Document;
//! let src = "; header\n(list (a 1)\t(b 2))\n";
//! let doc = Document::parse(src).unwrap();
//! assert_eq!(doc.to_string(), src);
//! ```
pub use ;
pub use ;
pub use Document;
pub use ParseError;
pub use pretty;