Searched refs:Echo_ (Results 1 – 16 of 16) sorted by relevance
/PHP-Parser/test/PhpParser/Node/Scalar/ |
H A D | DNumberTest.php | 6 use PhpParser\Node\Stmt\Echo_; alias 15 $this->assertInstanceOf(Echo_::class, $echo); 17 /** @var Echo_ $echo */
|
H A D | NumberTest.php | 5 use PhpParser\Node\Stmt\Echo_; alias 14 $this->assertInstanceOf(Echo_::class, $echo); 16 /** @var Echo_ $echo */
|
H A D | StringTest.php | 5 use PhpParser\Node\Stmt\Echo_; alias 14 $this->assertInstanceOf(Echo_::class, $echo); 16 /** @var Echo_ $echo */
|
/PHP-Parser/lib/PhpParser/Node/Stmt/ |
H A D | Echo_.php | 7 class Echo_ extends Node\Stmt { class
|
/PHP-Parser/test/PhpParser/Builder/ |
H A D | TraitUseTest.php | 48 ->with(new Stmt\Echo_([]))
|
H A D | TraitTest.php | 56 ->addStmt(new Stmt\Echo_([]))
|
H A D | ClassTest.php | 169 ->addStmt(new Stmt\Echo_([]))
|
/PHP-Parser/test/PhpParser/ |
H A D | PrettyPrinterTest.php | 263 new Stmt\Echo_([new String_('Hello')]), 264 new Stmt\Echo_([new String_('World')]),
|
H A D | ParserTestAbstract.php | 81 $this->assertInstanceOf(Stmt\Echo_::class, $echo);
|
H A D | NodeTraverserTest.php | 15 $echoNode = new Node\Stmt\Echo_([$str1Node, $str2Node]); 408 $stmts = [new Node\Stmt\Echo_([new String_('Foo'), new String_('Bar')])];
|
/PHP-Parser/doc/ |
H A D | 2_Usage_of_basic_components.markdown | 198 `$node->subNodeName`. The `Stmt\Echo_` node has only one subnode `exprs`. So in order to access it
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinterAbstract.php | 1534 Stmt\Echo_::class . '->exprs' => ', ',
|
/PHP-Parser/grammar/ |
H A D | php.y | 388 | T_ECHO expr_list_forbid_comma semi { $$ = Stmt\Echo_[$2]; }
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 992 protected function pStmt_Echo(Stmt\Echo_ $node): string {
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 1504 …$self->semValue = new Stmt\Echo_($self->semStack[$stackPos-(3-2)], $self->getAttributes($self->tok…
|
H A D | Php8.php | 1499 …$self->semValue = new Stmt\Echo_($self->semStack[$stackPos-(3-2)], $self->getAttributes($self->tok…
|
Completed in 42 milliseconds