(token, words)
| 305 | } |
| 306 | |
| 307 | function reserved_array(token, words) { |
| 308 | return token && token.type === TOKEN.RESERVED && in_array(token.text, words); |
| 309 | } |
| 310 | // Unsure of what they mean, but they work. Worth cleaning up in future. |
| 311 | var special_words = ['case', 'return', 'do', 'if', 'throw', 'else', 'await', 'break', 'continue', 'async']; |
| 312 |