(varname)
| 162 | return true; |
| 163 | } |
| 164 | function register(varname) { |
| 165 | var state = cx.state; |
| 166 | if (state.context) { |
| 167 | cx.marked = "def"; |
| 168 | for (var v = state.localVars; v; v = v.next) |
| 169 | if (v.name == varname) return; |
| 170 | state.localVars = {name: varname, next: state.localVars}; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | // Combinators |
| 175 |
no outgoing calls
no test coverage detected