(type, info)
| 319 | cx.state.context = cx.state.context.prev; |
| 320 | } |
| 321 | function pushlex(type, info) { |
| 322 | var result = function() { |
| 323 | var state = cx.state, indent = state.indented; |
| 324 | if (state.lexical.type == "stat") indent = state.lexical.indented; |
| 325 | else for (var outer = state.lexical; outer && outer.type == ")" && outer.align; outer = outer.prev) |
| 326 | indent = outer.indented; |
| 327 | state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info); |
| 328 | }; |
| 329 | result.lex = true; |
| 330 | return result; |
| 331 | } |
| 332 | function poplex() { |
| 333 | var state = cx.state; |
| 334 | if (state.lexical.prev) { |
no outgoing calls
no test coverage detected