(type, info)
| 217 | cx.state.context = cx.state.context.prev; |
| 218 | } |
| 219 | function pushlex(type, info) { |
| 220 | var result = function() { |
| 221 | var state = cx.state; |
| 222 | state.lexical = new JSLexical(state.indented, cx.stream.column(), type, null, state.lexical, info); |
| 223 | }; |
| 224 | result.lex = true; |
| 225 | return result; |
| 226 | } |
| 227 | function poplex() { |
| 228 | var state = cx.state; |
| 229 | if (state.lexical.prev) { |
no outgoing calls
no test coverage detected
searching dependent graphs…