()
| 209 | |
| 210 | var defaultVars = {name: "this", next: {name: "arguments"}}; |
| 211 | function pushcontext() { |
| 212 | cx.state.context = {prev: cx.state.context, vars: cx.state.localVars}; |
| 213 | cx.state.localVars = defaultVars; |
| 214 | } |
| 215 | function popcontext() { |
| 216 | cx.state.localVars = cx.state.context.vars; |
| 217 | cx.state.context = cx.state.context.prev; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…