(stream, state)
| 205 | } |
| 206 | |
| 207 | function append(stream, state) { |
| 208 | if (stream.match(/^append\b/)) { |
| 209 | state.restOfLine = 'variable'; |
| 210 | return KEYWORD; |
| 211 | } |
| 212 | } |
| 213 | function prepend(stream, state) { |
| 214 | if (stream.match(/^prepend\b/)) { |
| 215 | state.restOfLine = 'variable'; |