php-parser/test/code/parser/stmt/function/variadicDefaultValue.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

36 lines
777 B
Plaintext

Invalid variadic function
-----
<?php
function foo(...$foo = []) {}
-----
Variadic parameter cannot have a default value from 2:24 to 2:25
array(
0: Stmt_Function(
attrGroups: array(
)
byRef: false
name: Identifier(
name: foo
)
params: array(
0: Param(
attrGroups: array(
)
flags: 0
type: null
byRef: false
variadic: true
var: Expr_Variable(
name: foo
)
default: Expr_Array(
items: array(
)
)
)
)
returnType: null
stmts: array(
)
)
)