Current File : /home/itiffy/public_html/vendor/nikic/php-parser/test/code/parser/stmt/loop/do.test
Do loop
-----
<?php

do {

} while ($a);
-----
array(
    0: Stmt_Do(
        cond: Expr_Variable(
            name: a
        )
        stmts: array(
        )
    )
)