(indented, column, type, align, prev)
| 112 | } |
| 113 | |
| 114 | function Context(indented, column, type, align, prev) { |
| 115 | this.indented = indented; |
| 116 | this.column = column; |
| 117 | this.type = type; |
| 118 | this.align = align; |
| 119 | this.prev = prev; |
| 120 | } |
| 121 | function pushContext(state, col, type) { |
| 122 | var indent = state.indented; |
| 123 | if (state.context && state.context.type == "statement") |
nothing calls this directly
no outgoing calls
no test coverage detected