1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 12:24:39 +01:00
PHP-Parser/lib/PHPParser/Node/Expr
2011-09-28 16:26:51 +02:00
..
Cast Rename cast nodes and give them a common Expr_Cast parent (with specialized constructor) 2011-08-11 09:20:25 +02:00
Array.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
ArrayDimFetch.php Fix / improve some method doc docomments / signatures 2011-08-22 17:38:05 +02:00
ArrayItem.php Swap argument order for ArrayItem 2011-09-02 19:49:46 +02:00
Assign.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
AssignBitwiseAnd.php Rename Bin[ary] to Bitwise (which is the correct name) 2011-08-11 08:42:28 +02:00
AssignBitwiseOr.php Rename Bin[ary] to Bitwise (which is the correct name) 2011-08-11 08:42:28 +02:00
AssignBitwiseXor.php Rename Bin[ary] to Bitwise (which is the correct name) 2011-08-11 08:42:28 +02:00
AssignConcat.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
AssignDiv.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
AssignMinus.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
AssignMod.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
AssignMul.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
AssignPlus.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
AssignRef.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
AssignShiftLeft.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
AssignShiftRight.php Add specialized constructors for assignment operations 2011-08-11 08:35:10 +02:00
BitwiseAnd.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
BitwiseNot.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
BitwiseOr.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
BitwiseXor.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
BooleanAnd.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
BooleanNot.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
BooleanOr.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
Cast.php Rename cast nodes and give them a common Expr_Cast parent (with specialized constructor) 2011-08-11 09:20:25 +02:00
ClassConstFetch.php Instantiate a Node_Name for 'static', too. Fix some doc comments. 2011-08-19 17:44:42 +02:00
Clone.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
Concat.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
ConstFetch.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
Div.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
Empty.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
Equal.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
ErrorSuppress.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
Eval.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
Exit.php Fix / improve some method doc docomments / signatures 2011-08-22 17:38:05 +02:00
FuncCall.php Move Node_Expr_FuncCallArg to Node_Arg (just like Node_Param) 2011-09-22 20:34:35 +02:00
Greater.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
GreaterOrEqual.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
Identical.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
Include.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
Instanceof.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
Isset.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
LambdaFunc.php Fix some readme + doccomment typos 2011-09-28 16:26:51 +02:00
LambdaFuncUse.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
List.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
LogicalAnd.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
LogicalOr.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
LogicalXor.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
MethodCall.php Move Node_Expr_FuncCallArg to Node_Arg (just like Node_Param) 2011-09-22 20:34:35 +02:00
Minus.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
Mod.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
Mul.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
New.php Move Node_Expr_FuncCallArg to Node_Arg (just like Node_Param) 2011-09-22 20:34:35 +02:00
NotEqual.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
NotIdentical.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
Plus.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
PostDec.php Move Variable to Expr_Variable, move Stmt_FuncParam to Param (as it is used both in stmts and expr and both in funcs and methods) 2011-08-14 18:51:42 +02:00
PostInc.php Move Variable to Expr_Variable, move Stmt_FuncParam to Param (as it is used both in stmts and expr and both in funcs and methods) 2011-08-14 18:51:42 +02:00
PreDec.php Move Variable to Expr_Variable, move Stmt_FuncParam to Param (as it is used both in stmts and expr and both in funcs and methods) 2011-08-14 18:51:42 +02:00
PreInc.php Move Variable to Expr_Variable, move Stmt_FuncParam to Param (as it is used both in stmts and expr and both in funcs and methods) 2011-08-14 18:51:42 +02:00
Print.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
PropertyFetch.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
ShellExec.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
ShiftLeft.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
ShiftRight.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
Smaller.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
SmallerOrEqual.php Add specialized constructor for binary operators 2011-08-11 08:57:13 +02:00
StaticCall.php Move Node_Expr_FuncCallArg to Node_Arg (just like Node_Param) 2011-09-22 20:34:35 +02:00
StaticPropertyFetch.php Instantiate a Node_Name for 'static', too. Fix some doc comments. 2011-08-19 17:44:42 +02:00
Ternary.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
UnaryMinus.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
UnaryPlus.php Add specialized constructors for all expression nodes apart from lambda 2011-08-11 10:25:51 +02:00
Variable.php Move Variable to Expr_Variable, move Stmt_FuncParam to Param (as it is used both in stmts and expr and both in funcs and methods) 2011-08-14 18:51:42 +02:00