(state)
| 128 | } |
| 129 | |
| 130 | function popContext(state) { |
| 131 | if (state.context.prev) |
| 132 | state.context = state.context.prev; |
| 133 | return state.context.type; |
| 134 | } |
| 135 | |
| 136 | function pass(type, stream, state) { |
| 137 | return states[state.context.type](type, stream, state); |