loess_rust/lib.rs
1//! Grammar tokens representing the stable Rust programming language,
2//! closely following [The Rust Reference](https://doc.rust-lang.org/stable/reference/).
3//!
4//! Corrections in that regard are not automatically considered breaking changes,
5//! unless they became necessary due to a change in Rust **and** reduce what is considered valid.
6//!
7//! Breaking changes to the API are considered breaking as normal.
8//!
9//! *Note that unstable grammar may be accidentally accepted in some cases.*
10//! ***Ceasing to accept unstable grammar is not by itself considered a breaking change for Loess.***
11
12mod expressions;
13pub use expressions::*;
14
15mod lexical_structure;
16pub use lexical_structure::*;
17
18mod names;
19pub use names::*;