Lexer constructor
Lexer(
- String input
Implementation
Lexer(this.input) {
inputLength = input.length;
position = 0;
pending = Queue<Token>();
}
Lexer(this.input) {
inputLength = input.length;
position = 0;
pending = Queue<Token>();
}