Home
last modified time | relevance | path

Searched refs:KIND_LIST (Results 1 – 9 of 9) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/Expr/
H A DList_.php10 public const KIND_LIST = 1; // list() syntax define in PhpParser\\Node\\Expr\\List_
/PHP-Parser/test/PhpParser/
H A DParserTestAbstract.php186 $this->assertSame($stmts[0]->expr->var->getAttribute('kind'), Expr\List_::KIND_LIST);
187 …is->assertSame($stmts[0]->expr->var->items[0]->value->getAttribute('kind'), Expr\List_::KIND_LIST);
/PHP-Parser/test/code/parser/
H A DformattingAttributes.test277 kind: KIND_LIST (1)
/PHP-Parser/lib/PhpParser/
H A DNodeDumper.php258 List_::KIND_LIST => 'KIND_LIST',
/PHP-Parser/
H A DUPGRADE-5.0.md102 `Node\Expr\List_::KIND_LIST` or `Node\Expr\List_::KIND_ARRAY` specifies which syntax was actually
/PHP-Parser/grammar/
H A Dphp.y1355 { $$ = Expr\List_[$3]; $$->setAttribute('kind', Expr\List_::KIND_LIST);
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php572 …s->phpVersion->supportsShortArrayDestructuring() ? Expr\List_::KIND_ARRAY : Expr\List_::KIND_LIST);
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php2695 …], $self->tokenEndStack[$stackPos])); $self->semValue->setAttribute('kind', Expr\List_::KIND_LIST);
H A DPhp8.php2691 …], $self->tokenEndStack[$stackPos])); $self->semValue->setAttribute('kind', Expr\List_::KIND_LIST);

Completed in 45 milliseconds