nushell/crates/nu-source/src/lib.rs
2020-04-07 19:51:17 +12:00

16 lines
452 B
Rust

mod meta;
mod pretty;
mod term_colored;
mod text;
pub use self::meta::{
span_for_spanned_list, tag_for_tagged_list, AnchorLocation, HasFallibleSpan, HasSpan, HasTag,
IntoSpanned, Span, Spanned, SpannedItem, Tag, Tagged, TaggedItem,
};
pub use self::pretty::{
b, DebugDoc, DebugDocBuilder, PrettyDebug, PrettyDebugRefineKind, PrettyDebugWithSource,
ShellAnnotation,
};
pub use self::term_colored::TermColored;
pub use self::text::Text;