(state, col, type)
| 114 | this.prev = prev; |
| 115 | } |
| 116 | function pushContext(state, col, type) { |
| 117 | return state.context = new Context(state.indented, col, type, null, state.context); |
| 118 | } |
| 119 | function popContext(state) { |
| 120 | if (!state.context.prev) return; |
| 121 | var t = state.context.type; |