mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-03 09:57:51 +01:00
3ad0d4b310
This adds an additional "returnType" subnode to Stmt\Function_, Stmt\ClassMethod and Expr\Closure, as well as the corresponding support in the name resolver and pretty printer.
51 lines
1.0 KiB
Plaintext
51 lines
1.0 KiB
Plaintext
PHP 4 style declarations
|
|
-----
|
|
<?php
|
|
|
|
class A {
|
|
var $foo;
|
|
function bar() {}
|
|
static abstract function baz() {}
|
|
}
|
|
-----
|
|
array(
|
|
0: Stmt_Class(
|
|
type: 0
|
|
name: A
|
|
extends: null
|
|
implements: array(
|
|
)
|
|
stmts: array(
|
|
0: Stmt_Property(
|
|
type: 0
|
|
props: array(
|
|
0: Stmt_PropertyProperty(
|
|
name: foo
|
|
default: null
|
|
)
|
|
)
|
|
)
|
|
1: Stmt_ClassMethod(
|
|
type: 0
|
|
byRef: false
|
|
name: bar
|
|
params: array(
|
|
)
|
|
returnType: null
|
|
stmts: array(
|
|
)
|
|
)
|
|
2: Stmt_ClassMethod(
|
|
type: 24
|
|
byRef: false
|
|
name: baz
|
|
params: array(
|
|
)
|
|
returnType: null
|
|
stmts: array(
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|