(state, type, col)
| 76 | } |
| 77 | |
| 78 | function pushContext(state, type, col) { |
| 79 | state.context = {prev: state.context, indent: state.indent, col: col, type: type}; |
| 80 | } |
| 81 | function popContext(state) { |
| 82 | state.indent = state.context.indent; |
| 83 | state.context = state.context.prev; |