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 817d2db commit 2064dc1Copy full SHA for 2064dc1
src/parser/yyn_expr.js
@@ -161,6 +161,28 @@ PHP.Parser.prototype.Node_Expr_AssignMod = function() {
161
162
};
163
164
+PHP.Parser.prototype.Node_Expr_AssignBitwiseAnd = function() {
165
+
166
+ return {
167
+ type: "Node_Expr_AssignBitwiseAnd",
168
+ variable: arguments[ 0 ],
169
+ expr: arguments[ 1 ],
170
+ attributes: arguments[ 2 ]
171
+ };
172
173
+};
174
175
+PHP.Parser.prototype.Node_Expr_AssignBitwiseOr = function() {
176
177
178
+ type: "Node_Expr_AssignBitwiseOr",
179
180
181
182
183
184
185
186
PHP.Parser.prototype.Node_Expr_Plus = function() {
187
188
return {
0 commit comments