(ch)
| 255 | else input.croak("Expecting punctuation: \"" + ch + "\""); |
| 256 | } |
| 257 | function skip_split(ch) { |
| 258 | if (is_sp(ch)) input.next(); |
| 259 | else input.croak("Expecting punctuation: \"" + ch + "\""); |
| 260 | } |
| 261 | function unexpected() { |
| 262 | input.croak("Unexpected token: " + JSON.stringify(input.peek())); |
| 263 | } |