comparison vendor/nikic/php-parser/test/code/parser/stmt/loop/do.test @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children 5fb285c0d0e3
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
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 )