(state, type, stream)
| 100 | } |
| 101 | |
| 102 | function push(state, type, stream) { |
| 103 | state.ctx = {type: type, |
| 104 | indent: state.indent, |
| 105 | align: null, |
| 106 | column: stream.column(), |
| 107 | prev: state.ctx}; |
| 108 | } |
| 109 | function pop(state) { |
| 110 | state.indent = state.ctx.indent; |
| 111 | state.ctx = state.ctx.prev; |