(s)
| 3729 | |
| 3730 | |
| 3731 | function suffix(s) { |
| 3732 | var x = symbol(s, 150); |
| 3733 | |
| 3734 | x.led = function(left) { |
| 3735 | if (state.option.plusplus) { |
| 3736 | warning("W016", this, this.id); |
| 3737 | } else if ((!left.identifier || isReserved(left)) && left.id !== "." && left.id !== "[") { |
| 3738 | warning("W017", this); |
| 3739 | } |
| 3740 | |
| 3741 | this.left = left; |
| 3742 | return this; |
| 3743 | }; |
| 3744 | return x; |
| 3745 | } |
| 3746 | |
| 3747 | function optionalidentifier(fnparam, prop, preserve) { |
| 3748 | if (!state.tokens.next.identifier) { |
no test coverage detected