Lines Matching refs:firstToken
16336 const firstToken = this.fetch();
16339 let lastToken = firstToken;
16345 … throw new ParseError("Unexpected end of input in " + modeName, firstToken.range(lastToken, str));
16363 return firstToken.range(lastToken, str);
16375 const firstToken = this.fetch();
16376 let lastToken = firstToken;
16387 throw new ParseError("Invalid " + modeName + ": '" + firstToken.text + "'", firstToken);
16391 return firstToken.range(lastToken, str);
16535 const firstToken = this.fetch();
16536 const text = firstToken.text;
16554 loc: SourceLocation.range(firstToken, lastToken),
16572 throw new ParseError("Undefined control sequence: " + text, firstToken);