mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-11 00:29:37 +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.
37 lines
653 B
Plaintext
37 lines
653 B
Plaintext
Interface
|
|
-----
|
|
<?php
|
|
|
|
interface A extends C, D {
|
|
public function a();
|
|
}
|
|
-----
|
|
array(
|
|
0: Stmt_Interface(
|
|
name: A
|
|
extends: array(
|
|
0: Name(
|
|
parts: array(
|
|
0: C
|
|
)
|
|
)
|
|
1: Name(
|
|
parts: array(
|
|
0: D
|
|
)
|
|
)
|
|
)
|
|
stmts: array(
|
|
0: Stmt_ClassMethod(
|
|
type: 1
|
|
byRef: false
|
|
name: a
|
|
params: array(
|
|
)
|
|
returnType: null
|
|
stmts: null
|
|
)
|
|
)
|
|
)
|
|
)
|