Files
PHP-Parser/test/code/parser/expr/clone.test
Nikita Popov 9a5d5c112c Add newline at end of file for many tests
Add the newline in reconstructTest() and run updateTests.php, to
reduce spurious diffs in the future.
2023-05-20 19:18:11 +02:00

16 lines
181 B
Plaintext

Clone
-----
<?php
clone $a;
-----
array(
0: Stmt_Expression(
expr: Expr_Clone(
expr: Expr_Variable(
name: a
)
)
)
)