Home
last modified time | relevance | path

Searched refs:Include_ (Results 1 – 7 of 7) sorted by relevance

/PHP-Parser/lib/PhpParser/
H A DNodeDumper.php6 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 DPrettyPrinterAbstract.php102 Expr\Include_::class => [220, -1, -1],
1388 Expr\YieldFrom::class, Expr\Print_::class, Expr\Include_::class,
/PHP-Parser/lib/PhpParser/Node/Expr/
H A DInclude_.php7 class Include_ extends Expr { class
/PHP-Parser/grammar/
H A Dphp.y1065 …| T_INCLUDE expr { $$ = Expr\Include_[$2, Expr\Include_::TY…
1066 …| T_INCLUDE_ONCE expr { $$ = Expr\Include_[$2, Expr\Include_::TY…
1068 …| T_REQUIRE expr { $$ = Expr\Include_[$2, Expr\Include_::TY…
1069 …| T_REQUIRE_ONCE expr { $$ = Expr\Include_[$2, Expr\Include_::TY…
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php559 …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 DPhp8.php2358 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE,…
2361 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_…
2367 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE,…
2370 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_…
H A DPhp7.php2342 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE,…
2345 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_…
2351 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE,…
2354 …$self->semValue = new Expr\Include_($self->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_…

Completed in 76 milliseconds