pub trait PredictSets {
// Required method
fn predict_sets(&self) -> &PerSymbolSets;
}Expand description
Trait for grabbing the result of FIRST, FOLLOW and LAST set computation.
Required Methods§
Sourcefn predict_sets(&self) -> &PerSymbolSets
fn predict_sets(&self) -> &PerSymbolSets
Provides access to the mapping from a symbol to a symbol set.