/PHP-Parser/test/code/parser/expr/ |
H A D | concatPrecedence.test | 15 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 D | math.test | 66 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 D | logic.test | 29 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 D | constant_expr.test | 54 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 D | comparison.test | 22 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 D | ternaryAndCoalesce.test | 97 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 D | throw.test | 32 right: Expr_Throw(
|
H A D | exprInIsset.test | 32 right: Scalar_Int(
|
H A D | exprInList.test | 51 right: Scalar_Int(
|
H A D | arrow_function.test | 230 right: Expr_Variable( 277 right: Expr_Variable(
|
H A D | match.test | 116 right: Expr_Variable(
|
/PHP-Parser/lib/PhpParser/Node/Expr/ |
H A D | BinaryOp.php | 11 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 D | yieldPrecedence.test | 36 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 D | yieldUnaryPrecedence.test | 49 right: Expr_UnaryMinus(
|
H A D | basic.test | 284 right: Expr_YieldFrom( 297 right: Expr_Variable(
|
/PHP-Parser/test/code/parser/expr/uvs/ |
H A D | newInstanceofExpr.test | 16 right: Expr_Variable( 30 right: Expr_Variable( 55 right: Expr_Variable(
|
H A D | isset.test | 35 right: Expr_Array(
|
H A D | staticProperty.test | 50 right: Scalar_String(
|
/PHP-Parser/test/PhpParser/NodeVisitor/ |
H A D | FindingVisitorTest.php | 26 $assign->expr->right, 49 $assign->expr->right,
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 321 …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 D | for.test | 35 right: Expr_Variable(
|
/PHP-Parser/test/PhpParser/ |
H A D | NodeFinderTest.php | 13 $vars = [$assign->var, $assign->expr->left, $assign->expr->right];
|
/PHP-Parser/lib/PhpParser/ |
H A D | ConstExprEvaluator.php | 183 ?? $this->evaluate($expr->right); 189 $r = $expr->right;
|
/PHP-Parser/grammar/ |
H A D | php.y | 4 %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 D | basic.test | 11 $stmts[0]->exprs[0]->left->right->value = 42;
|