(type, stream, state)
| 134 | } |
| 135 | |
| 136 | function pass(type, stream, state) { |
| 137 | return states[state.context.type](type, stream, state); |
| 138 | } |
| 139 | function popAndPass(type, stream, state, n) { |
| 140 | for (var i = n || 1; i > 0; i--) |
| 141 | state.context = state.context.prev; |
no outgoing calls
no test coverage detected