(stream, state, type)
| 111 | } |
| 112 | |
| 113 | function pushContext(stream, state, type) { |
| 114 | state.context = { |
| 115 | prev: state.context, |
| 116 | indent: stream.indentation(), |
| 117 | col: stream.column(), |
| 118 | type: type |
| 119 | }; |
| 120 | } |
| 121 | |
| 122 | function popContext(state) { |
| 123 | state.indent = state.context.indent; |