(s, f, p)
| 3532 | |
| 3533 | |
| 3534 | function bitwise(s, f, p) { |
| 3535 | var x = symbol(s, p); |
| 3536 | reserveName(x); |
| 3537 | x.led = (typeof f === "function") ? f : function (left) { |
| 3538 | if (state.option.bitwise) { |
| 3539 | warning("W016", this, this.id); |
| 3540 | } |
| 3541 | this.left = left; |
| 3542 | this.right = expression(p); |
| 3543 | return this; |
| 3544 | }; |
| 3545 | return x; |
| 3546 | } |
| 3547 | |
| 3548 | |
| 3549 | function bitwiseassignop(s) { |
no test coverage detected