(state)
| 125 | return state.context = new Context(indent, col, type, null, state.context); |
| 126 | } |
| 127 | function popContext(state) { |
| 128 | var t = state.context.type; |
| 129 | if (t == ")" || t == "]" || t == "}") |
| 130 | state.indented = state.context.indented; |
| 131 | return state.context = state.context.prev; |
| 132 | } |
| 133 | |
| 134 | // Interface |
| 135 |