(indent, type, prev)
| 63 | }; |
| 64 | |
| 65 | function stateStack(indent, type, prev) { // represents a state stack object |
| 66 | this.indent = indent; |
| 67 | this.type = type; |
| 68 | this.prev = prev; |
| 69 | } |
| 70 | |
| 71 | function pushStack(state, indent, type) { |
| 72 | state.indentStack = new stateStack(indent, type, state.indentStack); |
nothing calls this directly
no outgoing calls
no test coverage detected