bool scan()

in lib/src/scanner.dart [61:65]


  bool scan(TokenType type) {
    if (peek().type != type) return false;
    next();
    return true;
  }