(state, type, col)
| 89 | } |
| 90 | |
| 91 | function pushContext(state, type, col) { |
| 92 | state.context = {prev: state.context, indent: state.indent, col: col, type: type}; |
| 93 | } |
| 94 | function popContext(state) { |
| 95 | state.indent = state.context.indent; |
| 96 | state.context = state.context.prev; |