(stream, state, f)
| 67 | reUntilCodeStop = /.*?\}\}\}/; |
| 68 | |
| 69 | function chain(stream, state, f) { |
| 70 | state.tokenize = f; |
| 71 | return f(stream, state); |
| 72 | } |
| 73 | |
| 74 | // Used as scratch variables to communicate multiple values without |
| 75 | // consing up tons of objects. |