()
| 79999 | } |
| 80000 | |
| 80001 | function parse_keyword() { |
| 80002 | if(token.type !== 'keyword') { |
| 80003 | return unexpected('expected keyword, got '+token.data) |
| 80004 | } |
| 80005 | |
| 80006 | return state.shift(), tokens.shift() |
| 80007 | } |
| 80008 | |
| 80009 | function parse_ident() { |
| 80010 | if(token.type !== 'ident') { |