Lexer constructor

Lexer(
  1. String input
)

Implementation

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