(indent, type, prev)
| 30 | var indentKeys = makeKeywords("define let letrec let* lambda"); |
| 31 | |
| 32 | function stateStack(indent, type, prev) { // represents a state stack object |
| 33 | this.indent = indent; |
| 34 | this.type = type; |
| 35 | this.prev = prev; |
| 36 | } |
| 37 | |
| 38 | function pushStack(state, indent, type) { |
| 39 | state.indentStack = new stateStack(indent, type, state.indentStack); |
nothing calls this directly
no outgoing calls
no test coverage detected