php4Style.test 727 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. PHP 4 style declarations
  2. -----
  3. <?php
  4. class A {
  5. var $foo;
  6. function bar() {}
  7. }
  8. -----
  9. array(
  10. 0: Stmt_Class(
  11. type: 0
  12. extends: null
  13. implements: array(
  14. )
  15. stmts: array(
  16. 0: Stmt_Property(
  17. type: 1
  18. props: array(
  19. 0: Stmt_PropertyProperty(
  20. name: foo
  21. default: null
  22. )
  23. )
  24. )
  25. 1: Stmt_ClassMethod(
  26. type: 1
  27. byRef: false
  28. params: array(
  29. )
  30. stmts: array(
  31. )
  32. name: bar
  33. )
  34. )
  35. name: A
  36. )
  37. )