()
| 3664 | } |
| 3665 | |
| 3666 | function parseFinalSemicolon() { |
| 3667 | if (state.tokens.next.id !== ";") { |
| 3668 | if (!state.option.asi) { |
| 3669 | if (!state.option.lastsemic || state.tokens.next.id !== "}" || |
| 3670 | state.tokens.next.line !== state.tokens.curr.line) { |
| 3671 | warningAt("W033", state.tokens.curr.line, state.tokens.curr.character); |
| 3672 | } |
| 3673 | } |
| 3674 | } else { |
| 3675 | advance(";"); |
| 3676 | } |
| 3677 | } |
| 3678 | |
| 3679 | function statement() { |
| 3680 | var values; |