We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5793c36 commit 323d322Copy full SHA for 323d322
PHP.js
@@ -11106,6 +11106,16 @@ PHP.Parser.prototype.Node_Expr_BitwiseOr = function() {
11106
11107
};
11108
11109
+PHP.Parser.prototype.Node_Expr_BitwiseXor = function() {
11110
+ return {
11111
+ type: "Node_Expr_BitwiseXor",
11112
+ left: arguments[ 0 ],
11113
+ right: arguments[ 1 ],
11114
+ attributes: arguments[ 2 ]
11115
+ };
11116
+
11117
+};
11118
11119
PHP.Parser.prototype.Node_Expr_BitwiseNot = function() {
11120
return {
11121
type: "Node_Expr_BitwiseNot",
0 commit comments