Home
last modified time | relevance | path

Searched refs:conds (Results 1 – 4 of 4) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/
H A DMatchArm.php10 public ?array $conds; variable in PhpParser\\Node\\MatchArm
17 public function __construct(?array $conds, Node\Expr $body, array $attributes = []) { argument
18 $this->conds = $conds;
/PHP-Parser/test/code/parser/expr/
H A Dmatch.test19 conds: array(
29 conds: array(
63 conds: array(
102 conds: array(
146 conds: array(
156 conds: null
186 conds: array(
199 conds: null
/PHP-Parser/test/code/formatPreservation/
H A Dmatch.test28 $stmts[0]->expr->expr->arms[0]->conds[] = new Scalar\LNumber(3);
69 $stmts[0]->expr->expr->arms[0]->conds = [new Scalar\LNumber(1)];
85 $stmts[0]->expr->expr->arms[0]->conds = null;
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php674 if ($node->conds) {
675 for ($i = 0, $c = \count($node->conds); $i + 1 < $c; $i++) {
676 $result .= $this->p($node->conds[$i]) . ', ';
678 $result .= $this->pKey($node->conds[$i]);

Completed in 19 milliseconds