(state, tagName, startOfLine)
| 183 | } |
| 184 | |
| 185 | function Context(state, tagName, startOfLine) { |
| 186 | this.prev = state.context; |
| 187 | this.tagName = tagName; |
| 188 | this.indent = state.indented; |
| 189 | this.startOfLine = startOfLine; |
| 190 | if (Kludges.doNotIndent.hasOwnProperty(tagName) || (state.context && state.context.noIndent)) |
| 191 | this.noIndent = true; |
| 192 | } |
| 193 | function popContext(state) { |
| 194 | if (state.context) state.context = state.context.prev; |
| 195 | } |
nothing calls this directly
no outgoing calls
no test coverage detected