(type, info)
| 230 | cx.state.context = cx.state.context.prev; |
| 231 | } |
| 232 | function pushlex(type, info) { |
| 233 | var result = function() { |
| 234 | var state = cx.state; |
| 235 | state.lexical = new HaxeLexical(state.indented, cx.stream.column(), type, null, state.lexical, info); |
| 236 | }; |
| 237 | result.lex = true; |
| 238 | return result; |
| 239 | } |
| 240 | function poplex() { |
| 241 | var state = cx.state; |
| 242 | if (state.lexical.prev) { |
no outgoing calls
no test coverage detected