mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-03 09:47:59 +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.
42 lines
753 B
Plaintext
42 lines
753 B
Plaintext
Return and pass by ref
|
|
-----
|
|
<?php
|
|
|
|
function a(&$b) {}
|
|
function &a($b) {}
|
|
-----
|
|
array(
|
|
0: Stmt_Function(
|
|
byRef: false
|
|
name: a
|
|
params: array(
|
|
0: Param(
|
|
type: null
|
|
byRef: true
|
|
variadic: false
|
|
name: b
|
|
default: null
|
|
)
|
|
)
|
|
returnType: null
|
|
stmts: array(
|
|
)
|
|
)
|
|
1: Stmt_Function(
|
|
byRef: true
|
|
name: a
|
|
params: array(
|
|
0: Param(
|
|
type: null
|
|
byRef: false
|
|
variadic: false
|
|
name: b
|
|
default: null
|
|
)
|
|
)
|
|
returnType: null
|
|
stmts: array(
|
|
)
|
|
)
|
|
)
|