pub enum PredictionMode {
SLL = 0,
LL = 1,
LL_EXACT_AMBIG_DETECTION = 2,
}
Expand description
This enum defines the prediction modes available in ANTLR 4 along with utility methods for analyzing configuration sets for conflicts and/or ambiguities.
It is set through `ParserATNSimulator::
Variants§
SLL = 0
The SLL(*) prediction mode. This prediction mode ignores the current parser context when making predictions. This is the fastest prediction mode, and provides correct results for many grammars. This prediction mode is more powerful than the prediction mode provided by ANTLR 3, but may result in syntax errors for grammar and input combinations which are not SLL.
When using this prediction mode, the parser will either return a correct parse tree (i.e. the same parse tree that would be returned with the {@link #LL} prediction mode), or it will report a syntax error. If a syntax error is encountered when using the {@link #SLL} prediction mode, it may be due to either an actual syntax error in the input or indicate that the particular combination of grammar and input requires the more powerful {@link #LL} prediction abilities to complete successfully.
This prediction mode does not provide any guarantees for prediction behavior for syntactically-incorrect inputs.
LL = 1
The LL(*) prediction mode. This prediction mode allows the current parser context to be used for resolving SLL conflicts that occur during prediction. This is the fastest prediction mode that guarantees correct parse results for all combinations of grammars with syntactically correct inputs.
When using this prediction mode, the parser will make correct decisions for all syntactically-correct grammar and input combinations. However, in cases where the grammar is truly ambiguous this prediction mode might not report a precise answer for exactly which alternatives are ambiguous.
This prediction mode does not provide any guarantees for prediction behavior for syntactically-incorrect inputs.
LL_EXACT_AMBIG_DETECTION = 2
The LL(*) prediction mode with exact ambiguity detection. In addition to the correctness guarantees provided by the {@link #LL} prediction mode, this prediction mode instructs the prediction algorithm to determine the complete and exact set of ambiguous alternatives for every ambiguous decision encountered while parsing.
This prediction mode may be used for diagnosing ambiguities during grammar development. Due to the performance overhead of calculating sets of ambiguous alternatives, this prediction mode should be avoided when the exact results are not necessary.
This prediction mode does not provide any guarantees for prediction behavior for syntactically-incorrect inputs.
Trait Implementations§
Source§impl Clone for PredictionMode
impl Clone for PredictionMode
Source§fn clone(&self) -> PredictionMode
fn clone(&self) -> PredictionMode
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for PredictionMode
impl Debug for PredictionMode
Source§impl PartialEq for PredictionMode
impl PartialEq for PredictionMode
impl Copy for PredictionMode
impl Eq for PredictionMode
impl StructuralPartialEq for PredictionMode
Auto Trait Implementations§
impl Freeze for PredictionMode
impl RefUnwindSafe for PredictionMode
impl Send for PredictionMode
impl Sync for PredictionMode
impl Unpin for PredictionMode
impl UnwindSafe for PredictionMode
Blanket Implementations§
Source§impl<T> AnyExt for T
impl<T> AnyExt for T
Source§fn downcast_ref<T>(this: &Self) -> Option<&T>where
T: Any,
fn downcast_ref<T>(this: &Self) -> Option<&T>where
T: Any,
T
behind referenceSource§fn downcast_mut<T>(this: &mut Self) -> Option<&mut T>where
T: Any,
fn downcast_mut<T>(this: &mut Self) -> Option<&mut T>where
T: Any,
T
behind mutable referenceSource§fn downcast_rc<T>(this: Rc<Self>) -> Result<Rc<T>, Rc<Self>>where
T: Any,
fn downcast_rc<T>(this: Rc<Self>) -> Result<Rc<T>, Rc<Self>>where
T: Any,
T
behind Rc
pointerSource§fn downcast_arc<T>(this: Arc<Self>) -> Result<Arc<T>, Arc<Self>>where
T: Any,
fn downcast_arc<T>(this: Arc<Self>) -> Result<Arc<T>, Arc<Self>>where
T: Any,
T
behind Arc
pointer