Lexer._tokenStartCharIndex

What character index in the stream did the current token start at? Needed, for example, to get the text for current token. Set at the start of nextToken.

class Lexer
size_t _tokenStartCharIndex;

Meta