/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinter.php | 15 public function prettyPrint(array $stmts): string; 33 public function prettyPrintFile(array $stmts): string; 50 … public function printFormatPreserving(array $stmts, array $origStmts, array $origTokens): string;
|
/PHP-Parser/lib/PhpParser/Node/Stmt/ |
H A D | Else_.php | 9 public array $stmts; variable in PhpParser\\Node\\Stmt\\Else_ 17 public function __construct(array $stmts = [], array $attributes = []) {
|
H A D | Finally_.php | 9 public array $stmts; variable in PhpParser\\Node\\Stmt\\Finally_ 17 public function __construct(array $stmts = [], array $attributes = []) {
|
H A D | Block.php | 9 public array $stmts; variable in PhpParser\\Node\\Stmt\\Block 17 public function __construct(array $stmts, array $attributes = []) {
|
H A D | Do_.php | 9 public array $stmts; variable in PhpParser\\Node\\Stmt\\Do_ 20 public function __construct(Node\Expr $cond, array $stmts = [], array $attributes = []) {
|
H A D | ElseIf_.php | 11 public array $stmts; variable in PhpParser\\Node\\Stmt\\ElseIf_ 20 public function __construct(Node\Expr $cond, array $stmts = [], array $attributes = []) {
|
H A D | Case_.php | 11 public array $stmts; variable in PhpParser\\Node\\Stmt\\Case_ 20 public function __construct(?Node\Expr $cond, array $stmts = [], array $attributes = []) {
|
H A D | While_.php | 11 public array $stmts; variable in PhpParser\\Node\\Stmt\\While_ 20 public function __construct(Node\Expr $cond, array $stmts = [], array $attributes = []) {
|
H A D | Declare_.php | 12 public ?array $stmts; variable in PhpParser\\Node\\Stmt\\Declare_ 21 public function __construct(array $declares, ?array $stmts = null, array $attributes = []) {
|
H A D | TryCatch.php | 9 public array $stmts; variable in PhpParser\\Node\\Stmt\\TryCatch 23 …public function __construct(array $stmts, array $catches, ?Finally_ $finally = null, array $attrib…
|
H A D | Namespace_.php | 15 public $stmts; variable in PhpParser\\Node\\Stmt\\Namespace_ 24 … public function __construct(?Node\Name $name = null, ?array $stmts = [], array $attributes = []) {
|
H A D | Catch_.php | 14 public array $stmts; variable in PhpParser\\Node\\Stmt\\Catch_ 25 array $types, ?Expr\Variable $var = null, array $stmts = [], array $attributes = []
|
H A D | For_.php | 15 public array $stmts; variable in PhpParser\\Node\\Stmt\\For_
|
H A D | If_.php | 11 public array $stmts; variable in PhpParser\\Node\\Stmt\\If_
|
H A D | Foreach_.php | 17 public array $stmts; variable in PhpParser\\Node\\Stmt\\Foreach_
|
H A D | ClassLike.php | 12 public array $stmts; variable in PhpParser\\Node\\Stmt\\ClassLike
|
H A D | Function_.php | 18 public array $stmts; variable in PhpParser\\Node\\Stmt\\Function_
|
/PHP-Parser/bin/ |
H A D | php-parse | 58 $stmts = $parser->parse($code, $errorHandler); variable 68 $stmts = $parser->parse($code); variable 91 $stmts = $traverser->traverse($stmts); variable
|
/PHP-Parser/lib/PhpParser/Internal/ |
H A D | PrintableNewAnonClassNode.php | 30 public array $stmts; variable in PhpParser\\Internal\\PrintableNewAnonClassNode 42 array $stmts, array $attributes
|
/PHP-Parser/tools/fuzzing/ |
H A D | target.php | 104 $stmts = $parser->parse($input); variable 108 $stmts = $traverser->traverse($stmts); variable
|
/PHP-Parser/lib/PhpParser/Builder/ |
H A D | Declaration.php | 28 public function addStmts(array $stmts) {
|
H A D | Namespace_.php | 13 private array $stmts = []; variable in PhpParser\\Builder\\Namespace_
|
H A D | Function_.php | 13 protected array $stmts = []; variable in PhpParser\\Builder\\Function_
|
H A D | Method.php | 17 protected ?array $stmts = []; variable in PhpParser\\Builder\\Method
|
/PHP-Parser/lib/PhpParser/Node/Expr/ |
H A D | Closure.php | 22 public array $stmts; variable in PhpParser\\Node\\Expr\\Closure
|