blockComments.test 461 B

123456789101112131415161718192021222324252627282930313233343536
  1. Comments on blocks
  2. -----
  3. <?php
  4. // foo
  5. {
  6. // bar
  7. {
  8. // baz
  9. $a;
  10. }
  11. }
  12. // empty
  13. {}
  14. -----
  15. array(
  16. 0: Stmt_Expression(
  17. expr: Expr_Variable(
  18. name: a
  19. comments: array(
  20. 0: // baz
  21. )
  22. )
  23. comments: array(
  24. 0: // foo
  25. 1: // bar
  26. 2: // baz
  27. )
  28. )
  29. 1: Stmt_Nop(
  30. comments: array(
  31. 0: // empty
  32. )
  33. )
  34. )