Lines Matching refs:lex
13924 _proto.lex = function lex() {
13952 return this.lex();
15077 this.pushToken(this.lexer.lex());
15356 var tok = bodyLexer.lex();
15360 tok = bodyLexer.lex();
16229 var lex = this.fetch();
16231 if (Parser.endOfExpression.indexOf(lex.text) !== -1) {
16235 if (breakOnTokenText && lex.text === breakOnTokenText) {
16239 if (breakOnInfix && src_functions[lex.text] && src_functions[lex.text].infix) {
16392 var lex = this.fetch();
16394 if (lex.text === "\\limits" || lex.text === "\\nolimits") {
16399 var limits = lex.text === "\\limits";
16406 var _limits = lex.text === "\\limits";
16410 throw new src_ParseError("Limit controls must follow a math operator", lex);
16415 } else if (lex.text === "^") {
16418 throw new src_ParseError("Double superscript", lex);
16422 } else if (lex.text === "_") {
16425 throw new src_ParseError("Double subscript", lex);
16429 } else if (lex.text === "'") {
16432 throw new src_ParseError("Double superscript", lex);