%PDF- %PDF-
Direktori : /var/www/html/geotechnics/api/vendor/nikic/php-parser/test/code/formatPreservation/ |
Current File : /var/www/html/geotechnics/api/vendor/nikic/php-parser/test/code/formatPreservation/anonClasses.test |
Anonymous classes ----- <?php new class ($x) extends X { }; ----- $new = $stmts[0]->expr; $new->class->extends = null; $new->args[] = new Expr\Variable('y'); ----- <?php new class ($x, $y) { }; ----- <?php new class {}; ----- // Ignore name assigned to anon class $new = $stmts[0]->expr; $new->class->name = new Node\Identifier('Anon1'); ----- <?php new class {};