php-parser/test/code/parser/stmt/function/byRef.test
Tomas Votruba 4c22c62783
[PHP 8.0] Add attributes support (#661)
Adds support for PHP 8 attributes, represented using `AttrGroup` nodes
containing `Attribute` nodes. The `attrGroup` subnode is added to all
nodes that can have attributes.

This is still missing FPPP support.

Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
2020-09-13 21:01:17 +02:00

59 lines
1.2 KiB
Plaintext

Return and pass by ref
-----
<?php
function a(&$b) {}
function &a($b) {}
-----
array(
0: Stmt_Function(
attrGroups: array(
)
byRef: false
name: Identifier(
name: a
)
params: array(
0: Param(
attrGroups: array(
)
flags: 0
type: null
byRef: true
variadic: false
var: Expr_Variable(
name: b
)
default: null
)
)
returnType: null
stmts: array(
)
)
1: Stmt_Function(
attrGroups: array(
)
byRef: true
name: Identifier(
name: a
)
params: array(
0: Param(
attrGroups: array(
)
flags: 0
type: null
byRef: false
variadic: false
var: Expr_Variable(
name: b
)
default: null
)
)
returnType: null
stmts: array(
)
)
)