(stream, state, type)
| 144 | } |
| 145 | |
| 146 | function pushContext(stream, state, type) { |
| 147 | state.context = { |
| 148 | prev: state.context, |
| 149 | indent: stream.indentation(), |
| 150 | col: stream.column(), |
| 151 | type: type |
| 152 | }; |
| 153 | } |
| 154 | |
| 155 | function popContext(state) { |
| 156 | state.indent = state.context.indent; |
no outgoing calls
no test coverage detected
searching dependent graphs…