Security update for Core, with self-updated composer
[yaffs-website] / vendor / nikic / php-parser / test / code / parser / stmt / loop / do.test
1 Do loop
2 -----
3 <?php
4
5 do {
6
7 } while ($a);
8 -----
9 array(
10     0: Stmt_Do(
11         cond: Expr_Variable(
12             name: a
13         )
14         stmts: array(
15         )
16     )
17 )