()
| 151 | |
| 152 | function pushlex(type, info) { |
| 153 | var result = function() { |
| 154 | var state = cx.state; |
| 155 | state.lexical = {indented: state.indented, column: cx.stream.column(), |
| 156 | type: type, prev: state.lexical, info: info}; |
| 157 | }; |
| 158 | result.lex = true; |
| 159 | return result; |
| 160 | } |
nothing calls this directly
no outgoing calls
no test coverage detected