676677678679680681682683684685686
} /** Switch to specified lex state. */ public void SwitchTo(int lexState) { if (lexState >= 1 || lexState < 0) throw new TokenMgrError("Error: Ignoring invalid lexical state : " + lexState + ". State unchanged.", TokenMgrError.INVALID_LEXICAL_STATE); else curLexState = lexState; }
767768769770771772773774775776
} if (!EOFSeen) { input_stream.backup(1); error_after = curPos <= 1 ? "" : input_stream.GetImage(); } throw new TokenMgrError(EOFSeen, curLexState, error_line, error_column, error_after, curChar, TokenMgrError.LEXICAL_ERROR); } }
931932933934935936937938939940941
1022102310241025102610271028102910301031
745746747748749750751752753754755
836837838839840841842843844845
489490491492493494495496497498499
580581582583584585586587588589
30363037303830393040304130423043304430453046
3127312831293130313131323133313431353136