Add comment to TestPerformance.PREDICTION_MODE configuration field

This commit is contained in:
Sam Harwell 2013-04-22 16:49:36 -05:00
parent 845bf53a51
commit e7b84c13dd
1 changed files with 6 additions and 0 deletions

View File

@ -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;