(state, col, type)
| 138 | this.prev = prev; |
| 139 | } |
| 140 | function pushContext(state, col, type) { |
| 141 | return state.context = new Context(state.indented, col, type, null, state.context); |
| 142 | } |
| 143 | function popContext(state) { |
| 144 | var t = state.context.type; |
| 145 | if (t == ")" || t == "]" || t == "}") |