(stream, state)
| 286 | } |
| 287 | |
| 288 | function each(stream, state) { |
| 289 | if (stream.match(/^(- *)?(each|for)\b/)) { |
| 290 | state.isEach = true; |
| 291 | return KEYWORD; |
| 292 | } |
| 293 | } |
| 294 | function eachContinued(stream, state) { |
| 295 | if (state.isEach) { |
| 296 | if (stream.match(/^ in\b/)) { |