This commit is contained in:
Terence Parr 2012-08-01 15:03:32 -07:00
parent b0c9a9c7c2
commit ff24630494
1 changed files with 3 additions and 1 deletions

View File

@ -71,7 +71,9 @@ public class DFAState {
public ATNConfigSet configs = new ATNConfigSet();
/** edges[symbol] points to target of symbol */
/** edges[symbol] points to target of symbol. Shift up by 1 so (-1)
* EOF maps to edges[0].
*/
@Nullable
public DFAState[] edges;