(type, indent, prev)
| 114 | // Context management |
| 115 | |
| 116 | function Context(type, indent, prev) { |
| 117 | this.type = type; |
| 118 | this.indent = indent; |
| 119 | this.prev = prev; |
| 120 | } |
| 121 | |
| 122 | function pushContext(state, stream, type) { |
| 123 | state.context = new Context(type, stream.indentation() + indentUnit, state.context); |
nothing calls this directly
no outgoing calls
no test coverage detected