(type, info)
| 183 | cx.state.context = cx.state.context.prev; |
| 184 | } |
| 185 | function pushlex(type, info) { |
| 186 | var result = function() { |
| 187 | var state = cx.state; |
| 188 | state.lexical = new JSLexical(state.indented, cx.stream.column(), type, null, state.lexical, info) |
| 189 | }; |
| 190 | result.lex = true; |
| 191 | return result; |
| 192 | } |
| 193 | function poplex() { |
| 194 | var state = cx.state; |
| 195 | if (state.lexical.prev) { |
no outgoing calls
no test coverage detected