missing bitwise xor function

Fixes error:
```
[object Object] has no method 'Node_Expr_BitwiseXor' 
```

Which results from using xor e.g:
```
error_reporting(E_ALL ^ E_NOTICE);

also reported to phpjs project:
https://github.com/niklasvh/php.js/pull/48
This commit is contained in:
Adam Jimenez 2014-03-18 16:01:33 +00:00
commit de51e72a3c

View file

@ -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",