(s, f, p)
| 20337 | } |
| 20338 | |
| 20339 | function assignop(s, f, p) { |
| 20340 | var x = infix(s, typeof f === "function" ? f : function(left, that) { |
| 20341 | that.left = left; |
| 20342 | |
| 20343 | checkLeftSideAssign(left, that, { allowDestructuring: true }); |
| 20344 | |
| 20345 | that.right = expression(10); |
| 20346 | |
| 20347 | return that; |
| 20348 | }, p); |
| 20349 | |
| 20350 | x.exps = true; |
| 20351 | x.assign = true; |
| 20352 | return x; |
| 20353 | } |
| 20354 | |
| 20355 | |
| 20356 | function bitwise(s, f, p) { |
no test coverage detected