1Comments on blocks 2----- 3<?php 4 5// foo 6{ 7 // bar 8 { 9 // baz 10 $a; 11 } 12} 13 14// empty 15{} 16----- 17array( 18 0: Stmt_Block( 19 stmts: array( 20 0: Stmt_Block( 21 stmts: array( 22 0: Stmt_Expression( 23 expr: Expr_Variable( 24 name: a 25 ) 26 comments: array( 27 0: // baz 28 ) 29 ) 30 ) 31 comments: array( 32 0: // bar 33 ) 34 ) 35 ) 36 comments: array( 37 0: // foo 38 ) 39 ) 40 1: Stmt_Block( 41 stmts: array( 42 ) 43 comments: array( 44 0: // empty 45 ) 46 ) 47) 48