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.
40 lines
763 B
Plaintext
40 lines
763 B
Plaintext
Abstract class
|
|
-----
|
|
<?php
|
|
|
|
abstract class A {
|
|
public function a() {}
|
|
abstract public function b();
|
|
}
|
|
-----
|
|
array(
|
|
0: Stmt_Class(
|
|
type: 16
|
|
name: A
|
|
extends: null
|
|
implements: array(
|
|
)
|
|
stmts: array(
|
|
0: Stmt_ClassMethod(
|
|
type: 1
|
|
byRef: false
|
|
name: a
|
|
params: array(
|
|
)
|
|
returnType: null
|
|
stmts: array(
|
|
)
|
|
)
|
|
1: Stmt_ClassMethod(
|
|
type: 17
|
|
byRef: false
|
|
name: b
|
|
params: array(
|
|
)
|
|
returnType: null
|
|
stmts: null
|
|
)
|
|
)
|
|
)
|
|
)
|