1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 12:24:39 +01:00
PHP-Parser/test/code/prettyPrinter/stmt/do_while.test

10 lines
69 B
Plaintext
Raw Normal View History

2015-10-01 17:32:24 +02:00
doWhile
-----
<?php
do {
} while (true);
-----
do {
} while (true);