(state,type,col)
| 80 | return"string"; |
| 81 | } |
| 82 | function pushContext(state,type,col){state.context={prev:state.context,indent:state.indent,col:col,type:type};} |
| 83 | function popContext(state){state.indent=state.context.indent;state.context=state.context.prev;} |
| 84 | return{ |
| 85 | startState:function(){ |