We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I would expect an error or stdClass|(Iterator&Throwable), since "and" usually has higher precedence than "or".
stdClass|(Iterator&Throwable)
"and"
"or"
The text was updated successfully, but these errors were encountered:
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".
2.1.0
string(17) "stdClass|Iterator"
Sorry, something went wrong.
No branches or pull requests
I would expect an error or
stdClass|(Iterator&Throwable)
, since"and"
usually has higher precedence than"or"
.The text was updated successfully, but these errors were encountered: