Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching refs:state

41      *  and recover from errors etc...  As a separate state object, it can be
46 * These fields are publically visible but the actual state pointer per
110 // LEXER FIELDS (must be in same state object to avoid casting
162 public RecognizerSharedState( RecognizerSharedState state )
164 if (state == null)
165 throw new ArgumentNullException("state");
167 following = (BitSet[])state.following.Clone();
168 _fsp = state._fsp;
169 errorRecovery = state.errorRecovery;
170 lastErrorIndex = state.lastErrorIndex;
171 failed = state.failed;
172 syntaxErrors = state.syntaxErrors;
173 backtracking = state.backtracking;
175 if ( state.ruleMemo != null )
176 ruleMemo = (IDictionary<int, int>[])state.ruleMemo.Clone();
178 token = state.token;
179 tokenStartCharIndex = state.tokenStartCharIndex;
180 tokenStartCharPositionInLine = state.tokenStartCharPositionInLine;
181 channel = state.channel;
182 type = state.type;
183 text = state.text;