peek method

String peek()

Implementation

String peek() {
  if (isAtEnd()) return '\u0000';
  return source[current];
}