Home
last modified time | relevance | path

Searched refs:exprs (Results 1 – 21 of 21) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/Stmt/
H A DEcho_.php9 public array $exprs; variable in PhpParser\\Node\\Stmt\\Echo_
17 public function __construct(array $exprs, array $attributes = []) { argument
19 $this->exprs = $exprs;
/PHP-Parser/test/code/parser/stmt/namespace/
H A Dmix.test19 exprs: array(
33 exprs: array(
42 exprs: array(
66 exprs: array(
75 exprs: array(
87 exprs: array(
H A DoutsideStmtInvalid.test11 exprs: array(
18 exprs: array(
47 exprs: array(
/PHP-Parser/test/code/parser/stmt/
H A Decho.test10 exprs: array(
17 exprs: array(
H A Dhashbang.test17 exprs: array(
H A Ddeclare.test49 exprs: array(
/PHP-Parser/test/code/formatPreservation/
H A Dbasic.test11 $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');
/PHP-Parser/test/code/parser/scalar/
H A DflexibleDocStringErrors.test60 exprs: array(
67 exprs: array(
103 exprs: array(
/PHP-Parser/test/PhpParser/Node/Scalar/
H A DDNumberTest.php18 $lLumber = $echo->exprs[0];
H A DNumberTest.php17 $lLumber = $echo->exprs[0];
H A DStringTest.php17 $string = $echo->exprs[0];
/PHP-Parser/lib/PhpParser/
H A DBuilderFactory.php348 public function concat(...$exprs): Concat { argument
349 $numExprs = count($exprs);
354 $lastConcat = $this->normalizeStringExpr($exprs[0]);
356 $lastConcat = new Concat($lastConcat, $this->normalizeStringExpr($exprs[$i]));
/PHP-Parser/test/code/parser/expr/
H A Dmatch.test12 exprs: array(
/PHP-Parser/doc/component/
H A DJSON_representation.markdown94 "exprs": [
H A DAST_builders.markdown136 * `concat(...$exprs)`: Create a tree of `BinaryOp\Concat` nodes for the given expressions.
/PHP-Parser/test/PhpParser/
H A DParserTestAbstract.php98 $var = $echo->exprs[0];
/PHP-Parser/doc/
H A D2_Usage_of_basic_components.markdown122 exprs: array(
198 `$node->subNodeName`. The `Stmt\Echo_` node has only one subnode `exprs`. So in order to access it
199 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
H A D0_Introduction.markdown63 exprs: array(
/PHP-Parser/test/code/parser/stmt/class/
H A Dproperty_hooks.test79 exprs: array(
/PHP-Parser/test/code/parser/errorHandling/
H A Drecovery.test515 exprs: array(
783 exprs: array(
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php993 return 'echo ' . $this->pCommaSeparated($node->exprs) . ';';

Completed in 41 milliseconds