isAtEnd method

bool isAtEnd()

Implementation

bool isAtEnd() {
  bool atEnd = current >= source.length;
  return atEnd;
}