Lexer constructor
Lexer(})
Implementation
Lexer(String text,
{this.filename, this.currentLine = 1, this.index = 0, required this.endOfFile}) {
input = text.codeUnits;
if (endOfFile == null) {
endOfFile = input.length;
}
}