(s, f, p)
| 20354 | |
| 20355 | |
| 20356 | function bitwise(s, f, p) { |
| 20357 | var x = symbol(s, p); |
| 20358 | reserveName(x); |
| 20359 | x.infix = true; |
| 20360 | x.led = (typeof f === "function") ? f : function(left) { |
| 20361 | if (state.option.bitwise) { |
| 20362 | warning("W016", this, this.id); |
| 20363 | } |
| 20364 | this.left = left; |
| 20365 | this.right = expression(p); |
| 20366 | return this; |
| 20367 | }; |
| 20368 | return x; |
| 20369 | } |
| 20370 | |
| 20371 | function bitwiseassignop(s) { |
| 20372 | return assignop(s, function(left, that) { |
no test coverage detected