diff --git a/lib/ace/mode/php/php.js b/lib/ace/mode/php/php.js index 12786baa..a1abc609 100644 --- a/lib/ace/mode/php/php.js +++ b/lib/ace/mode/php/php.js @@ -4810,6 +4810,16 @@ PHP.Parser.prototype.Node_Expr_BitwiseOr = function() { }; +PHP.Parser.prototype.Node_Expr_BitwiseXor = function() { + return { + type: "Node_Expr_BitwiseXor", + left: arguments[ 0 ], + right: arguments[ 1 ], + attributes: arguments[ 2 ] + }; + +}; + PHP.Parser.prototype.Node_Expr_BitwiseNot = function() { return { type: "Node_Expr_BitwiseNot",