From 4e84fa282469658c450510b425a4928feaf63d1f Mon Sep 17 00:00:00 2001
From: Terence Parr
Date: Mon, 2 Jun 2014 21:30:12 -0700
Subject: [PATCH] tweak to comment
---
.../src/org/antlr/v4/runtime/atn/ParserATNSimulator.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/runtime/Java/src/org/antlr/v4/runtime/atn/ParserATNSimulator.java b/runtime/Java/src/org/antlr/v4/runtime/atn/ParserATNSimulator.java
index fad03c93e..a48c1de44 100755
--- a/runtime/Java/src/org/antlr/v4/runtime/atn/ParserATNSimulator.java
+++ b/runtime/Java/src/org/antlr/v4/runtime/atn/ParserATNSimulator.java
@@ -1323,15 +1323,15 @@ public class ParserATNSimulator extends ATNSimulator {
*
*
* This method might not be called for every semantic context evaluated
- * during the prediction process. In particular, the following restrictions
- * are allowed:
+ * during the prediction process. In particular, we currently do not
+ * evaluate the following but it may change in the future:
*
*
* - Precedence predicates (represented by
- * {@link SemanticContext.PrecedencePredicate}) may or may not be evaluated
+ * {@link SemanticContext.PrecedencePredicate}) are not currently evaluated
* through this method.
* - Operator predicates (represented by {@link SemanticContext.AND} and
- * {@link SemanticContext.OR}) may be evaluated as a single semantic
+ * {@link SemanticContext.OR}) are evaluated as a single semantic
* context, rather than evaluating the operands individually.
* Implementations which require evaluation results from individual
* predicates should override this method to explicitly handle evaluation of