1 pub mod error; 2 3 mod doc_comments; 4 mod spanned; 5 mod ty; 6 7 pub use doc_comments::extract_doc_comment; 8 pub use doc_comments::format_doc_comment; 9 10 pub use self::{ 11 spanned::Sp, 12 ty::{inner_type, is_simple_ty, sub_type, subty_if_name, Ty}, 13 }; 14