1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 04:14:44 +01:00
PHP-Parser/test/code/prettyPrinter/stmt/for.test

28 lines
252 B
Plaintext
Raw Normal View History

2015-10-01 17:32:24 +02:00
for
-----
<?php
for ($i = 0; $i < 10; $i++) {
}
for ($i = 0,$j = 0; $i < 10; $i++) {
}
for ($i = 0; $i < 10;) {
}
for (;;) {
}
-----
for ($i = 0; $i < 10; $i++) {
}
for ($i = 0, $j = 0; $i < 10; $i++) {
}
for ($i = 0; $i < 10;) {
}
for (;;) {
}