xref: /PHP-Parser/test/code/parser/stmt/loop/do.test (revision 9a5d5c11)
1Do loop
2-----
3<?php
4
5do {
6
7} while ($a);
8-----
9array(
10    0: Stmt_Do(
11        stmts: array(
12        )
13        cond: Expr_Variable(
14            name: a
15        )
16    )
17)
18