/PHP-Parser/test/code/parser/stmt/function/ |
H A D | typeVersions.test | 24 0: Param( 40 1: Param( 56 2: Param( 72 3: Param( 88 4: Param( 107 5: Param( 126 6: Param( 145 7: Param( 164 8: Param( 236 0: Param( [all …]
|
H A D | builtinTypeDeclarations.test | 15 0: Param( 31 1: Param( 47 2: Param( 63 3: Param( 79 4: Param( 95 5: Param( 111 6: Param(
|
H A D | variadic.test | 18 0: Param( 32 1: Param( 59 0: Param( 73 1: Param( 100 0: Param( 114 1: Param( 143 0: Param( 157 1: Param(
|
H A D | defaultValues.test | 26 0: Param( 44 1: Param( 60 2: Param( 81 3: Param( 99 4: Param( 117 5: Param( 134 6: Param( 151 7: Param( 176 8: Param(
|
H A D | typeDeclarations.test | 16 0: Param( 30 1: Param( 46 2: Param( 62 3: Param(
|
H A D | parameters_trailing_comma.test | 17 0: Param( 68 0: Param( 82 1: Param( 116 0: Param(
|
H A D | nullableTypes.test | 17 0: Param( 35 1: Param(
|
H A D | byRef.test | 17 0: Param( 44 0: Param(
|
H A D | exit_die_function.test | 18 0: Param( 58 0: Param(
|
H A D | variadicDefaultValue.test | 16 0: Param(
|
/PHP-Parser/test/code/parser/expr/ |
H A D | arrow_function.test | 22 0: Param( 52 0: Param( 82 0: Param( 110 0: Param( 138 0: Param( 152 1: Param( 196 0: Param( 210 1: Param( 243 0: Param( 257 1: Param(
|
H A D | closure.test | 20 0: Param( 54 0: Param( 116 0: Param( 160 0: Param(
|
/PHP-Parser/test/code/formatPreservation/ |
H A D | emptyListInsertion.test | 38 $stmts[0]->params[] = new Node\Param(new Node\Expr\Variable('a')); 39 $stmts[0]->params[] = new Node\Param(new Node\Expr\Variable('b')); 40 $stmts[1]->stmts[0]->params[] = new Node\Param(new Node\Expr\Variable('a')); 41 $stmts[1]->stmts[0]->params[] = new Node\Param(new Node\Expr\Variable('b')); 42 $stmts[2]->expr->params[] = new Node\Param(new Node\Expr\Variable('a')); 43 $stmts[2]->expr->params[] = new Node\Param(new Node\Expr\Variable('b')); 46 $stmts[3]->expr->params[] = new Node\Param(new Node\Expr\Variable('a')); 47 $stmts[3]->expr->params[] = new Node\Param(new Node\Expr\Variable('b'));
|
H A D | listRemoval.test | 32 $stmts[0]->params[] = new Node\Param(new Expr\Variable('x')); 33 $stmts[0]->params[] = new Node\Param(new Expr\Variable('y'));
|
/PHP-Parser/test/code/parser/stmt/class/ |
H A D | property_promotion.test | 37 0: Param( 55 1: Param( 74 2: Param( 92 3: Param( 110 4: Param( 138 5: Param(
|
H A D | asymmetric_visibility.test | 86 0: Param( 100 1: Param( 114 2: Param(
|
/PHP-Parser/test/PhpParser/Builder/ |
H A D | ParamTest.php | 18 return new Param($name); 191 new Node\Param(new Expr\Variable('test'), null, null, true), 203 new Node\Param(new Expr\Variable('test'), null, null, false, true), 215 … new Node\Param(new Expr\Variable('test'), null, null, false, false, [], Modifiers::PUBLIC), 227 … new Node\Param(new Expr\Variable('test'), null, null, false, false, [], Modifiers::PROTECTED), 237 … new Node\Param(new Expr\Variable('test'), null, null, false, false, [], Modifiers::PROTECTED_SET), 249 … new Node\Param(new Expr\Variable('test'), null, null, false, false, [], Modifiers::PRIVATE), 259 … new Node\Param(new Expr\Variable('test'), null, null, false, false, [], Modifiers::PRIVATE_SET), 271 … new Node\Param(new Expr\Variable('test'), null, null, false, false, [], Modifiers::READONLY), 288 …new Node\Param(new Expr\Variable('attributeGroup'), null, null, false, false, [], 0, [$attributeGr…
|
H A D | FunctionTest.php | 38 $param1 = new Node\Param(new Variable('test1')); 39 $param2 = new Node\Param(new Variable('test2')); 40 $param3 = new Node\Param(new Variable('test3'));
|
H A D | MethodTest.php | 81 $param1 = new Node\Param(new Variable('test1')); 82 $param2 = new Node\Param(new Variable('test2')); 83 $param3 = new Node\Param(new Variable('test3'));
|
/PHP-Parser/test/PhpParser/Node/ |
H A D | ParamTest.php | 10 $node = new Param(new Variable('foo')); 26 $node = new Param(new Variable('foo')); 42 $node = new Param(new Variable('foo'));
|
/PHP-Parser/lib/PhpParser/Node/ |
H A D | FunctionLike.php | 16 * @return Param[]
|
H A D | PropertyHook.php | 17 /** @var Param[] Parameters */
|
/PHP-Parser/test/PhpParser/Node/Stmt/ |
H A D | ClassMethodTest.php | 8 use PhpParser\Node\Param; alias 99 $param = new Param(new Variable('a'));
|
/PHP-Parser/lib/PhpParser/Builder/ |
H A D | Param.php | 10 class Param implements PhpParser\Builder { class 166 return new Node\Param(
|
H A D | FunctionLike.php | 37 if (!$param instanceof Node\Param) {
|