(state, type, col)
| 47 | } |
| 48 | }; |
| 49 | var pushContext = function(state, type, col) { |
| 50 | return state.context = { |
| 51 | prev: state.context, |
| 52 | indent: state.indent, |
| 53 | col: col, |
| 54 | type: type |
| 55 | }; |
| 56 | }; |
| 57 | var popContext = function(state) { |
| 58 | state.indent = state.context.indent; |
| 59 | return state.context = state.context.prev; |