Mercurial > hg > isophonics-drupal-site
view vendor/nikic/php-parser/test/code/parser/stmt/class/php4Style.test @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
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( ) ) ) ) )