| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- Comments on blocks
- -----
- <?php
- // foo
- {
- // bar
- {
- // baz
- $a;
- }
- }
- // empty
- {}
- -----
- array(
- 0: Stmt_Block(
- stmts: array(
- 0: Stmt_Block(
- stmts: array(
- 0: Stmt_Expression(
- expr: Expr_Variable(
- name: a
- )
- comments: array(
- 0: // baz
- )
- )
- )
- comments: array(
- 0: // bar
- )
- )
- )
- comments: array(
- 0: // foo
- )
- )
- 1: Stmt_Block(
- stmts: array(
- )
- comments: array(
- 0: // empty
- )
- )
- )
|