peek method

Token peek()

Implementation

Token peek() {
  _nextToken ??= tokens[current];
  return _nextToken!;
}