forked from jasder/antlr
Add comment to TestPerformance.PREDICTION_MODE configuration field
This commit is contained in:
parent
845bf53a51
commit
e7b84c13dd
|
@ -211,6 +211,12 @@ public class TestPerformance extends BaseTest {
|
|||
*/
|
||||
private static final boolean SHOW_DFA_STATE_STATS = true;
|
||||
|
||||
/**
|
||||
* Specify the {@link PredictionMode} used by the
|
||||
* {@link ParserATNSimulator}. If {@link #TWO_STAGE_PARSING} is
|
||||
* {@code true}, this value only applies to the second stage, as the first
|
||||
* stage will always use {@link PredictionMode#SLL}.
|
||||
*/
|
||||
private static final PredictionMode PREDICTION_MODE = PredictionMode.LL;
|
||||
|
||||
private static final boolean TWO_STAGE_PARSING = true;
|
||||
|
|
Loading…
Reference in New Issue