()
| 33314 | } |
| 33315 | |
| 33316 | function parse_keyword() { |
| 33317 | if(token.type !== 'keyword') { |
| 33318 | return unexpected('expected keyword, got '+token.data) |
| 33319 | } |
| 33320 | |
| 33321 | return state.shift(), tokens.shift() |
| 33322 | } |
| 33323 | |
| 33324 | function parse_ident() { |
| 33325 | if(token.type !== 'ident') { |