Mercurial > hg > isophonics-drupal-site
view vendor/nikic/php-parser/test/code/parser/stmt/class/php4Style.test @ 12:7a779792577d
Update Drupal core to v8.4.5 (via Composer)
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 15:52:07 +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( ) ) ) ) )