1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! AST, parser and serializer operations //! //! This is an internal API used by `FluentBundle` for parsing an FTL syntax //! into an AST that can be then resolved by the `Resolver`. //! //! This module may be useful for tooling that operates on FTL syntax. #[macro_use] pub mod errors; pub mod ftlstream; pub mod parser; pub mod stream; pub use self::parser::parse;