1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Everything about parsing text into text annotated with scopes.
//! The most important struct here is `SyntaxSet`, check out the docs for that.
#[cfg(feature = "parsing")]
pub mod syntax_definition;
#[cfg(all( feature = "parsing", feature = "yaml-load"))]
mod yaml_load;
#[cfg(feature = "parsing")]
mod syntax_set;
#[cfg(feature = "parsing")]
mod parser;

mod scope;

#[cfg(feature = "parsing")]
pub use self::syntax_definition::SyntaxDefinition;
#[cfg(all( feature = "parsing", feature = "yaml-load"))]
pub use self::yaml_load::*;
#[cfg(feature = "parsing")]
pub use self::syntax_set::*;
#[cfg(feature = "parsing")]
pub use self::parser::*;

pub use self::scope::*;