cfg_predict/
lib.rs

1//! Prediction for predictive parsers.
2//!
3//! FIRST and FOLLOW sets impls are based on code by Niko Matsakis.
4
5mod distance;
6mod first;
7mod follow;
8mod last;
9mod sets;
10
11pub use self::distance::MinimalDistance;
12pub use self::first::FirstSets;
13pub use self::follow::FollowSets;
14pub use self::last::LastSets;
15pub use self::sets::{PerSymbolSets, PredictSets};