introQuery = new Source(Introspection::getIntrospectionQuery()); } /** * @Warmup(2) * @Revs(100) * @Iterations(5) */ public function benchIntrospectionQuery() { $lexer = new Lexer($this->introQuery); do { $token = $lexer->nextToken(); } while ($token->kind !== Token::EOF); } }