(s)
| 3569 | |
| 3570 | |
| 3571 | function suffix(s) { |
| 3572 | var x = symbol(s, 150); |
| 3573 | |
| 3574 | x.led = function (left) { |
| 3575 | if (state.option.plusplus) { |
| 3576 | warning("W016", this, this.id); |
| 3577 | } else if ((!left.identifier || isReserved(left)) && left.id !== "." && left.id !== "[") { |
| 3578 | warning("W017", this); |
| 3579 | } |
| 3580 | |
| 3581 | this.left = left; |
| 3582 | return this; |
| 3583 | }; |
| 3584 | return x; |
| 3585 | } |
| 3586 | |
| 3587 | function optionalidentifier(fnparam, prop, preserve, exported) { |
| 3588 | if (!state.tokens.next.identifier) { |
no test coverage detected