parser/tests/0022/code.php
Saif Eddin Gmati 558ce71563
feat: add test generator (#134)
Co-authored-by: Ryan Chandler <ryangjchandler@gmail.com>
closes https://github.com/ryangjchandler/php-parser-rs/issues/130
2022-11-29 23:19:51 +00:00

14 lines
122 B
PHP

<?php
foreach ($a as $b):
echo $a;
endforeach;
while (true):
$a;
endwhile;
for ($a; $b; $c):
$d;
endfor;