(stream, state)
| 279 | } |
| 280 | |
| 281 | function conditional(stream, state) { |
| 282 | if (stream.match(/^(if|unless|else if|else)\b/)) { |
| 283 | state.javaScriptLine = true; |
| 284 | return KEYWORD; |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | function each(stream, state) { |
| 289 | if (stream.match(/^(- *)?(each|for)\b/)) { |