blockComments.test 252 B

1234567891011121314151617181920212223
  1. Comments on blocks
  2. -----
  3. <?php
  4. // foo
  5. {
  6. // bar
  7. {
  8. // baz
  9. $a;
  10. }
  11. }
  12. -----
  13. array(
  14. 0: Expr_Variable(
  15. name: a
  16. comments: array(
  17. 0: // foo
  18. 1: // bar
  19. 2: // baz
  20. )
  21. )
  22. )