(type, info)
| 298 | cx.state.context = cx.state.context.prev; |
| 299 | } |
| 300 | function pushlex(type, info) { |
| 301 | var result = function() { |
| 302 | var state = cx.state, indent = state.indented; |
| 303 | if (state.lexical.type == "stat") indent = state.lexical.indented; |
| 304 | else for (var outer = state.lexical; outer && outer.type == ")" && outer.align; outer = outer.prev) |
| 305 | indent = outer.indented; |
| 306 | state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info); |
| 307 | }; |
| 308 | result.lex = true; |
| 309 | return result; |
| 310 | } |
| 311 | function poplex() { |
| 312 | var state = cx.state; |
| 313 | if (state.lexical.prev) { |
no outgoing calls
no test coverage detected