()
| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected