nopPositions.test 457 B

12345678910111213141516171819202122232425262728293031
  1. Positions for leading nop statement
  2. -----
  3. <?php
  4. /* Comment */
  5. -----
  6. !!positions
  7. array(
  8. 0: Stmt_Nop[2:14 - 2:13](
  9. comments: array(
  10. 0: /* Comment */
  11. )
  12. )
  13. )
  14. -----
  15. <?php
  16. {
  17. /* comment */
  18. }
  19. -----
  20. !!positions
  21. array(
  22. 0: Stmt_Block[2:1 - 4:1](
  23. stmts: array(
  24. 0: Stmt_Nop[3:0 - 3:17](
  25. comments: array(
  26. 0: /* comment */
  27. )
  28. )
  29. )
  30. )
  31. )