File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/nikic/php-parser/lib/PhpParser/Node/Expr
Upload
[..]
Array_.php (831 B)
Edit
Rename
Del
AssignOp/
Rename
Del
AssignOp.php (726 B)
Edit
Rename
Del
BinaryOp/
Rename
Del
Cast/
Rename
Del
Cast.php (567 B)
Edit
Rename
Del
ClassConstFetch.php (986 B)
Edit
Rename
Del
Clone_.php (637 B)
Edit
Rename
Del
Closure.php (2.77 KB)
Edit
Rename
Del
Eval_.php (637 B)
Edit
Rename
Del
Exit_.php (758 B)
Edit
Rename
Del
Instanceof_.php (860 B)
Edit
Rename
Del
List_.php (879 B)
Edit
Rename
Del
New_.php (1.08 KB)
Edit
Rename
Del
NullsafePropertyFetch.php (971 B)
Edit
Rename
Del
PostInc.php (639 B)
Edit
Rename
Del
Print_.php (640 B)
Edit
Rename
Del
StaticPropertyFetch.php (1014 B)
Edit
Rename
Del
Ternary.php (967 B)
Edit
Rename
Del
UnaryMinus.php (652 B)
Edit
Rename
Del
Yield_.php (846 B)
Edit
Rename
Del
Edit: Eval_.php
<?php declare(strict_types=1); namespace PhpParser\Node\Expr; use PhpParser\Node\Expr; class Eval_ extends Expr { /** @var Expr Expression */ public Expr $expr; /** * Constructs an eval() node. * * @param Expr $expr Expression * @param array<string, mixed> $attributes Additional attributes */ public function __construct(Expr $expr, array $attributes = []) { $this->attributes = $attributes; $this->expr = $expr; } public function getSubNodeNames(): array { return ['expr']; } public function getType(): string { return 'Expr_Eval'; } }
Simpan