(state, type, stream)
| 83 | } |
| 84 | |
| 85 | function push(state, type, stream) { |
| 86 | state.ctx = {type: type, |
| 87 | indent: state.indent, |
| 88 | align: null, |
| 89 | column: stream.column(), |
| 90 | prev: state.ctx}; |
| 91 | } |
| 92 | function pop(state) { |
| 93 | state.indent = state.ctx.indent; |
| 94 | state.ctx = state.ctx.prev; |