12345678910111213141516171819202122232425262728293031 |
- Comments on blocks
- -----
- <?php
- // foo
- {
- // bar
- {
- // baz
- $a;
- }
- }
- // empty
- {}
- -----
- array(
- 0: Expr_Variable(
- name: a
- comments: array(
- 0: // foo
- 1: // bar
- 2: // baz
- )
- )
- 1: Stmt_Nop(
- comments: array(
- 0: // empty
- )
- )
- )
|