fluent 0.1.1

A localization library designed to unleash the entire expressive power of natural language translations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! AST, parser and serializer operations
//!
//! This is an internal API used by `MessageContext` 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 ast;
pub mod parser;
pub mod stream;
pub mod ftlstream;

pub use self::parser::parse;