Home
last modified time | relevance | path

Searched refs:Print_ (Results 1 – 11 of 11) sorted by relevance

/PHP-Parser/test/PhpParser/Builder/
H A DMethodTest.php11 use PhpParser\Node\Expr\Print_; alias
100 $stmt1 = new Print_(new String_('test1'));
101 $stmt2 = new Print_(new String_('test2'));
102 $stmt3 = new Print_(new String_('test3'));
161 ->addStmt(new Print_(new String_('test')))
169 ->addStmt(new Print_(new String_('test')))
H A DFunctionTest.php10 use PhpParser\Node\Expr\Print_; alias
57 $stmt1 = new Print_(new String_('test1'));
58 $stmt2 = new Print_(new String_('test2'));
59 $stmt3 = new Print_(new String_('test3'));
/PHP-Parser/lib/PhpParser/Node/Expr/
H A DPrint_.php7 class Print_ extends Expr { class
/PHP-Parser/test/PhpParser/
H A DNodeTraverserTest.php38 $printNode = new Expr\Print_($str1Node);
182 $printNode = new Expr\Print_($strNode);
218 $printNode = new Expr\Print_($strNode);
262 $printNode = new Expr\Print_($varNode3);
H A DBuilderFactoryTest.php312 ->addStmt(new Expr\Print_(new Expr\Variable('someParam'))))
/PHP-Parser/doc/component/
H A DAST_builders.markdown64 ->addStmt(new Node\Expr\Print_(new Node\Expr\Variable('someParam')))
/PHP-Parser/lib/PhpParser/
H A DPrettyPrinterAbstract.php98 Expr\Print_::class => [180, -1, -1],
1388 Expr\YieldFrom::class, Expr\Print_::class, Expr\Include_::class,
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php477 protected function pExpr_Print(Expr\Print_ $node, int $precedence, int $lhsPrecedence): string {
478 … return $this->pPrefixOp(Expr\Print_::class, 'print ', $node->expr, $precedence, $lhsPrecedence);
/PHP-Parser/grammar/
H A Dphp.y1086 | T_PRINT expr { $$ = Expr\Print_[$2]; }
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php2399 …$self->semValue = new Expr\Print_($self->semStack[$stackPos-(2-2)], $self->getAttributes($self->to…
H A DPhp8.php2401 …$self->semValue = new Expr\Print_($self->semStack[$stackPos-(2-2)], $self->getAttributes($self->to…

Completed in 58 milliseconds