Searched refs:Print_ (Results 1 – 11 of 11) sorted by relevance
/PHP-Parser/test/PhpParser/Builder/ |
H A D | MethodTest.php | 11 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 D | FunctionTest.php | 10 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 D | Print_.php | 7 class Print_ extends Expr { class
|
/PHP-Parser/test/PhpParser/ |
H A D | NodeTraverserTest.php | 38 $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 D | BuilderFactoryTest.php | 312 ->addStmt(new Expr\Print_(new Expr\Variable('someParam'))))
|
/PHP-Parser/doc/component/ |
H A D | AST_builders.markdown | 64 ->addStmt(new Node\Expr\Print_(new Node\Expr\Variable('someParam')))
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinterAbstract.php | 98 Expr\Print_::class => [180, -1, -1], 1388 Expr\YieldFrom::class, Expr\Print_::class, Expr\Include_::class,
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 477 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 D | php.y | 1086 | T_PRINT expr { $$ = Expr\Print_[$2]; }
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2399 …$self->semValue = new Expr\Print_($self->semStack[$stackPos-(2-2)], $self->getAttributes($self->to…
|
H A D | Php8.php | 2401 …$self->semValue = new Expr\Print_($self->semStack[$stackPos-(2-2)], $self->getAttributes($self->to…
|
Completed in 58 milliseconds