Home
last modified time | relevance | path

Searched refs:right (Results 1 – 25 of 29) sorted by relevance

12

/PHP-Parser/test/code/parser/expr/
H A DconcatPrecedence.test15 right: Scalar_Int(
19 right: Expr_BinaryOp_Plus(
23 right: Scalar_Int(
35 right: Scalar_Int(
39 right: Expr_BinaryOp_ShiftLeft(
43 right: Scalar_Int(
64 right: Scalar_Int(
68 right: Scalar_Int(
72 right: Scalar_Int(
87 right: Scalar_Int(
[all …]
H A Dmath.test66 right: Expr_Variable(
79 right: Expr_Variable(
89 right: Expr_Variable(
99 right: Expr_Variable(
109 right: Expr_Variable(
119 right: Expr_Variable(
129 right: Expr_Variable(
139 right: Expr_Variable(
149 right: Expr_Variable(
159 right: Expr_Variable(
[all …]
H A Dlogic.test29 right: Expr_Variable(
42 right: Expr_Variable(
68 right: Expr_Variable(
81 right: Expr_Variable(
91 right: Expr_Variable(
102 right: Expr_Variable(
110 right: Expr_Variable(
129 right: Expr_Variable(
134 right: Expr_Variable(
148 right: Expr_Variable(
[all …]
H A Dconstant_expr.test54 right: Scalar_Int(
71 right: Scalar_Int(
88 right: Scalar_Float(
127 right: Scalar_Int(
243 right: Scalar_Int(
260 right: Scalar_Int(
277 right: Scalar_Int(
294 right: Scalar_Int(
311 right: Scalar_Int(
328 right: Scalar_Int(
[all …]
H A Dcomparison.test22 right: Expr_Variable(
32 right: Expr_Variable(
42 right: Expr_Variable(
52 right: Expr_Variable(
62 right: Expr_Variable(
72 right: Expr_Variable(
82 right: Expr_Variable(
92 right: Expr_Variable(
102 right: Expr_Variable(
H A DternaryAndCoalesce.test97 right: Expr_Variable(
110 right: Expr_BinaryOp_Coalesce(
114 right: Expr_Variable(
126 right: Expr_Variable(
144 right: Expr_Variable(
148 right: Expr_Variable(
H A Dthrow.test32 right: Expr_Throw(
H A DexprInIsset.test32 right: Scalar_Int(
H A DexprInList.test51 right: Scalar_Int(
H A Darrow_function.test230 right: Expr_Variable(
277 right: Expr_Variable(
H A Dmatch.test116 right: Expr_Variable(
/PHP-Parser/lib/PhpParser/Node/Expr/
H A DBinaryOp.php11 public Expr $right; variable in PhpParser\\Node\\Expr\\BinaryOp
17 * @param Expr $right The right hand side expression
20 public function __construct(Expr $left, Expr $right, array $attributes = []) { argument
23 $this->right = $right;
/PHP-Parser/test/code/parser/stmt/generator/
H A DyieldPrecedence.test36 right: Scalar_String(
50 right: Expr_Exit(
64 right: Scalar_String(
80 right: Expr_Exit(
105 right: Scalar_String(
136 right: Scalar_String(
161 right: Scalar_String(
191 right: Scalar_String(
234 right: Scalar_String(
H A DyieldUnaryPrecedence.test49 right: Expr_UnaryMinus(
H A Dbasic.test284 right: Expr_YieldFrom(
297 right: Expr_Variable(
/PHP-Parser/test/code/parser/expr/uvs/
H A DnewInstanceofExpr.test16 right: Expr_Variable(
30 right: Expr_Variable(
55 right: Expr_Variable(
H A Disset.test35 right: Expr_Array(
H A DstaticProperty.test50 right: Scalar_String(
/PHP-Parser/test/PhpParser/NodeVisitor/
H A DFindingVisitorTest.php26 $assign->expr->right,
49 $assign->expr->right,
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php321 …return $this->pInfixOp(BinaryOp\Plus::class, $node->left, ' + ', $node->right, $precedence, $lhsPr…
325 …return $this->pInfixOp(BinaryOp\Minus::class, $node->left, ' - ', $node->right, $precedence, $lhsP…
329 …return $this->pInfixOp(BinaryOp\Mul::class, $node->left, ' * ', $node->right, $precedence, $lhsPre…
333 …return $this->pInfixOp(BinaryOp\Div::class, $node->left, ' / ', $node->right, $precedence, $lhsPre…
337 …return $this->pInfixOp(BinaryOp\Concat::class, $node->left, ' . ', $node->right, $precedence, $lhs…
341 …return $this->pInfixOp(BinaryOp\Mod::class, $node->left, ' % ', $node->right, $precedence, $lhsPre…
357 …return $this->pInfixOp(BinaryOp\BitwiseOr::class, $node->left, ' | ', $node->right, $precedence, $…
373 …return $this->pInfixOp(BinaryOp\Pow::class, $node->left, ' ** ', $node->right, $precedence, $lhsPr…
389 …return $this->pInfixOp(BinaryOp\Equal::class, $node->left, ' == ', $node->right, $precedence, $lhs…
409 …return $this->pInfixOp(BinaryOp\Greater::class, $node->left, ' > ', $node->right, $precedence, $lh…
[all …]
/PHP-Parser/test/code/parser/stmt/loop/
H A Dfor.test35 right: Expr_Variable(
/PHP-Parser/test/PhpParser/
H A DNodeFinderTest.php13 $vars = [$assign->var, $assign->expr->left, $assign->expr->right];
/PHP-Parser/lib/PhpParser/
H A DConstExprEvaluator.php183 ?? $this->evaluate($expr->right);
189 $r = $expr->right;
/PHP-Parser/grammar/
H A Dphp.y4 %right T_THROW
10 %right T_PRINT
11 %right T_YIELD
12 %right T_DOUBLE_ARROW
13 %right T_YIELD_FROM
16 %right T_COALESCE
34 %right '!'
36 %right '~' T_INC T_DEC T_INT_CAST T_DOUBLE_CAST T_STRING_CAST T_ARRAY_CAST T_OBJECT_CAST T_BOOL_CAS…
37 %right T_POW
38 %right '['
/PHP-Parser/test/code/formatPreservation/
H A Dbasic.test11 $stmts[0]->exprs[0]->left->right->value = 42;

Completed in 54 milliseconds

12