Searched refs:Include_ (Results 1 – 7 of 7) sorted by relevance
/PHP-Parser/lib/PhpParser/ |
H A D | NodeDumper.php | 6 use PhpParser\Node\Expr\Include_; alias 89 if ('type' === $key && $node instanceof Include_) { 215 Include_::TYPE_INCLUDE => 'TYPE_INCLUDE', 216 Include_::TYPE_INCLUDE_ONCE => 'TYPE_INCLUDE_ONCE', 217 Include_::TYPE_REQUIRE => 'TYPE_REQUIRE', 218 Include_::TYPE_REQUIRE_ONCE => 'TYPE_REQUIRE_ONCE',
|
H A D | PrettyPrinterAbstract.php | 102 Expr\Include_::class => [220, -1, -1], 1388 Expr\YieldFrom::class, Expr\Print_::class, Expr\Include_::class,
|
/PHP-Parser/lib/PhpParser/Node/Expr/ |
H A D | Include_.php | 7 class Include_ extends Expr { class
|
/PHP-Parser/grammar/ |
H A D | php.y | 1066 …| T_INCLUDE expr { $$ = Expr\Include_[$2, Expr\Include_::TY… 1067 …| T_INCLUDE_ONCE expr { $$ = Expr\Include_[$2, Expr\Include_::TY… 1069 …| T_REQUIRE expr { $$ = Expr\Include_[$2, Expr\Include_::TY… 1070 …| T_REQUIRE_ONCE expr { $$ = Expr\Include_[$2, Expr\Include_::TY…
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 559 …protected function pExpr_Include(Expr\Include_ $node, int $precedence, int $lhsPrecedence): string… 561 Expr\Include_::TYPE_INCLUDE => 'include', 562 Expr\Include_::TYPE_INCLUDE_ONCE => 'include_once', 563 Expr\Include_::TYPE_REQUIRE => 'require', 564 Expr\Include_::TYPE_REQUIRE_ONCE => 'require_once', 567 …return $this->pPrefixOp(Expr\Include_::class, $map[$node->type] . ' ', $node->expr, $precedence, $…
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2351 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE,… 2354 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_… 2360 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE,… 2363 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_…
|
H A D | Php8.php | 2353 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE,… 2356 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_… 2362 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE,… 2365 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_…
|
Completed in 33 milliseconds