(stream, state)
| 211 | } |
| 212 | } |
| 213 | function prepend(stream, state) { |
| 214 | if (stream.match(/^prepend\b/)) { |
| 215 | state.restOfLine = 'variable'; |
| 216 | return KEYWORD; |
| 217 | } |
| 218 | } |
| 219 | function block(stream, state) { |
| 220 | if (stream.match(/^block\b *(?:(prepend|append)\b)?/)) { |
| 221 | state.restOfLine = 'variable'; |