Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stdClass|Iterator&Throwable is parsed as stdClass|Iterator #271

Open
vudaltsov opened this issue Mar 27, 2025 · 1 comment
Open

stdClass|Iterator&Throwable is parsed as stdClass|Iterator #271

vudaltsov opened this issue Mar 27, 2025 · 1 comment

Comments

@vudaltsov
Copy link

I would expect an error or stdClass|(Iterator&Throwable), since "and" usually has higher precedence than "or".

@vudaltsov
Copy link
Author

Reproducer:

<?php

use PHPStan\PhpDocParser\Lexer\Lexer;
use PHPStan\PhpDocParser\Parser\ConstExprParser;
use PHPStan\PhpDocParser\Parser\TokenIterator;
use PHPStan\PhpDocParser\Parser\TypeParser;
use PHPStan\PhpDocParser\ParserConfig;
use PHPStan\PhpDocParser\Printer\Printer;

require_once __DIR__.'/../vendor/autoload.php';

$config = new ParserConfig(usedAttributes: []);
$lexer = new Lexer($config);
$constExprParser = new ConstExprParser($config);
$typeParser = new TypeParser($config, $constExprParser);

$tokens = new TokenIterator($lexer->tokenize('stdClass|Iterator&Throwable'));
$type = $typeParser->parse($tokens);

var_dump((new Printer())->print($type));

On version 2.1.0 it outputs string(17) "stdClass|Iterator".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant