(varname)
| 209 | return true; |
| 210 | } |
| 211 | function register(varname) { |
| 212 | var state = cx.state; |
| 213 | if (state.context) { |
| 214 | cx.marked = "def"; |
| 215 | for (var v = state.localVars; v; v = v.next) |
| 216 | if (v.name == varname) return; |
| 217 | state.localVars = {name: varname, next: state.localVars}; |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | // Combinators |
| 222 |
no outgoing calls
no test coverage detected