Mercurial > hg > isophonics-drupal-site
view vendor/nikic/php-parser/test/code/parser/stmt/class/php4Style.test @ 5:c69a71b4f40f
Add slideshow module
author | Chris Cannam |
---|---|
date | Thu, 07 Dec 2017 14:46:23 +0000 |
parents | 4c8ae668cc8c |
children | 5fb285c0d0e3 |
line wrap: on
line source
PHP 4 style declarations ----- <?php class A { var $foo; function bar() {} static abstract function baz() {} } ----- array( 0: Stmt_Class( flags: 0 name: A extends: null implements: array( ) stmts: array( 0: Stmt_Property( flags: 0 props: array( 0: Stmt_PropertyProperty( name: foo default: null ) ) ) 1: Stmt_ClassMethod( flags: 0 byRef: false name: bar params: array( ) returnType: null stmts: array( ) ) 2: Stmt_ClassMethod( flags: MODIFIER_ABSTRACT | MODIFIER_STATIC (24) byRef: false name: baz params: array( ) returnType: null stmts: array( ) ) ) ) )