php-parser/test/code/parser/stmt/class/php4Style.test

67 lines
1.5 KiB
Plaintext
Raw Normal View History

PHP 4 style declarations
-----
<?php
class A {
var $foo;
function bar() {}
static abstract function baz() {}
}
-----
array(
0: Stmt_Class(
attrGroups: array(
)
flags: 0
name: Identifier(
name: A
)
extends: null
implements: array(
)
stmts: array(
0: Stmt_Property(
attrGroups: array(
)
flags: 0
2019-01-05 12:06:18 +01:00
type: null
props: array(
0: Stmt_PropertyProperty(
name: VarLikeIdentifier(
name: foo
)
default: null
)
)
)
1: Stmt_ClassMethod(
attrGroups: array(
)
flags: 0
byRef: false
name: Identifier(
name: bar
)
params: array(
)
returnType: null
stmts: array(
)
)
2: Stmt_ClassMethod(
attrGroups: array(
)
2016-07-25 13:53:49 +02:00
flags: MODIFIER_ABSTRACT | MODIFIER_STATIC (24)
byRef: false
name: Identifier(
name: baz
)
params: array(
)
returnType: null
stmts: array(
)
)
)
)
)