TokensStartState is not really a BlockStartState because it doesn't have an associated end state

This commit is contained in:
Sam Harwell 2012-08-12 11:52:52 -05:00
parent 9b42acbf4d
commit 0c073062f7
1 changed files with 1 additions and 1 deletions

View File

@ -30,5 +30,5 @@
package org.antlr.v4.runtime.atn;
/** The Tokens rule start state linking to each lexer rule start state */
public class TokensStartState extends BlockStartState {
public class TokensStartState extends DecisionState {
}