(stream, state, type)
| 147 | } |
| 148 | |
| 149 | function pushContext(stream, state, type) { |
| 150 | state.context = { |
| 151 | prev: state.context, |
| 152 | indent: stream.indentation(), |
| 153 | col: stream.column(), |
| 154 | type: type |
| 155 | }; |
| 156 | } |
| 157 | |
| 158 | function popContext(state) { |
| 159 | state.indent = state.context.indent; |