(stream, state, f)
| 55 | var isOperatorChar = /[+\-*&%=<>!?|]/; |
| 56 | |
| 57 | function chain(stream, state, f) { |
| 58 | state.tokenize = f; |
| 59 | return f(stream, state); |
| 60 | } |
| 61 | |
| 62 | function nextUntilUnescaped(stream, end) { |
| 63 | var escaped = false, next; |
no outgoing calls
no test coverage detected
searching dependent graphs…