(state)
| 92 | state.context = {prev: state.context, indent: state.indent, col: col, type: type}; |
| 93 | } |
| 94 | function popContext(state) { |
| 95 | state.indent = state.context.indent; |
| 96 | state.context = state.context.prev; |
| 97 | } |
| 98 | |
| 99 | return { |
| 100 | startState: function() { |