(type, info)
| 295 | cx.state.context = cx.state.context.prev; |
| 296 | } |
| 297 | function pushlex(type, info) { |
| 298 | var result = function() { |
| 299 | var state = cx.state, indent = state.indented; |
| 300 | if (state.lexical.type == "stat") indent = state.lexical.indented; |
| 301 | state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info); |
| 302 | }; |
| 303 | result.lex = true; |
| 304 | return result; |
| 305 | } |
| 306 | function poplex() { |
| 307 | var state = cx.state; |
| 308 | if (state.lexical.prev) { |
no outgoing calls
no test coverage detected