Mercurial > hg > isophonics-drupal-site
annotate vendor/nikic/php-parser/test/code/parser/stmt/function/variadicDefaultValue.test @ 2:92f882872392
Trusted hosts, + remove migration modules
author | Chris Cannam |
---|---|
date | Tue, 05 Dec 2017 09:26:43 +0000 |
parents | 4c8ae668cc8c |
children | 5fb285c0d0e3 |
rev | line source |
---|---|
Chris@0 | 1 Invalid variadic function |
Chris@0 | 2 ----- |
Chris@0 | 3 <?php |
Chris@0 | 4 function foo(...$foo = []) {} |
Chris@0 | 5 ----- |
Chris@0 | 6 Variadic parameter cannot have a default value from 2:24 to 2:25 |
Chris@0 | 7 array( |
Chris@0 | 8 0: Stmt_Function( |
Chris@0 | 9 byRef: false |
Chris@0 | 10 name: foo |
Chris@0 | 11 params: array( |
Chris@0 | 12 0: Param( |
Chris@0 | 13 type: null |
Chris@0 | 14 byRef: false |
Chris@0 | 15 variadic: true |
Chris@0 | 16 name: foo |
Chris@0 | 17 default: Expr_Array( |
Chris@0 | 18 items: array( |
Chris@0 | 19 ) |
Chris@0 | 20 ) |
Chris@0 | 21 ) |
Chris@0 | 22 ) |
Chris@0 | 23 returnType: null |
Chris@0 | 24 stmts: array( |
Chris@0 | 25 ) |
Chris@0 | 26 ) |
Chris@0 | 27 ) |