GraphQL\Benchmarks\LexerBench::benchIntrospectionQuery PHP Method

benchIntrospectionQuery() public method

    public function benchIntrospectionQuery()
    {
        $lexer = new Lexer($this->introQuery);
        do {
            $token = $lexer->nextToken();
        } while ($token->kind !== Token::EOF);
    }