Searched refs:exprs (Results 1 – 21 of 21) sorted by relevance
9 public array $exprs; variable in PhpParser\\Node\\Stmt\\Echo_17 public function __construct(array $exprs, array $attributes = []) { argument19 $this->exprs = $exprs;
19 exprs: array(33 exprs: array(42 exprs: array(66 exprs: array(75 exprs: array(87 exprs: array(
11 exprs: array(18 exprs: array(47 exprs: array(
10 exprs: array(17 exprs: array(
17 exprs: array(
49 exprs: array(
11 $stmts[0]->exprs[0]->left->right->value = 42;130 $stmts[0]->exprs[0] = new Expr\ConstFetch(new Node\Name('C'));171 $stmts[0]->exprs[0]->parts[0] = new Expr\Variable('bar');172 $stmts[1]->exprs[0]->parts[0] = new Expr\Variable('bar');
60 exprs: array(67 exprs: array(103 exprs: array(
18 $lLumber = $echo->exprs[0];
17 $lLumber = $echo->exprs[0];
17 $string = $echo->exprs[0];
348 public function concat(...$exprs): Concat { argument349 $numExprs = count($exprs);354 $lastConcat = $this->normalizeStringExpr($exprs[0]);356 $lastConcat = new Concat($lastConcat, $this->normalizeStringExpr($exprs[$i]));
12 exprs: array(
94 "exprs": [
136 * `concat(...$exprs)`: Create a tree of `BinaryOp\Concat` nodes for the given expressions.
98 $var = $echo->exprs[0];
122 exprs: array(198 `$node->subNodeName`. The `Stmt\Echo_` node has only one subnode `exprs`. So in order to access it199 in the above example you would write `$stmts[0]->exprs`. If you wanted to access the name of the fu…200 call, you would write `$stmts[0]->exprs[1]->name`.239 ->exprs // sub expressions
63 exprs: array(
79 exprs: array(
515 exprs: array(783 exprs: array(
993 return 'echo ' . $this->pCommaSeparated($node->exprs) . ';';
Completed in 41 milliseconds