(stream, state, type)
| 155 | } |
| 156 | |
| 157 | function pushContext(stream, state, type) { |
| 158 | state.context = { |
| 159 | prev: state.context, |
| 160 | indent: stream.indentation(), |
| 161 | col: stream.column(), |
| 162 | type: type |
| 163 | }; |
| 164 | } |
| 165 | |
| 166 | function popContext(state) { |
| 167 | state.indent = state.context.indent; |
no test coverage detected