()
| 48294 | return ch; |
| 48295 | }, |
| 48296 | peek = function peek() { |
| 48297 | |
| 48298 | // Get the next character without consuming it or |
| 48299 | // assigning it to the ch varaible. |
| 48300 | |
| 48301 | return text.charAt(at); |
| 48302 | }, |
| 48303 | identifier = function identifier() { |
| 48304 | |
| 48305 | // Parse an identifier. Normally, reserved words are disallowed here, but we |