(type, info)
| 150 | } |
| 151 | |
| 152 | function pushlex(type, info) { |
| 153 | var result = function() { |
| 154 | var state = cx.state; |
| 155 | state.lexical = {indented: state.indented, column: cx.stream.column(), |
| 156 | type: type, prev: state.lexical, info: info}; |
| 157 | }; |
| 158 | result.lex = true; |
| 159 | return result; |
| 160 | } |
| 161 | function poplex() { |
| 162 | var state = cx.state; |
| 163 | if (state.lexical.prev) { |
no outgoing calls
no test coverage detected
searching dependent graphs…