()
| 222 | |
| 223 | var defaultVars = {name: "this", next: null}; |
| 224 | function pushcontext() { |
| 225 | if (!cx.state.context) cx.state.localVars = defaultVars; |
| 226 | cx.state.context = {prev: cx.state.context, vars: cx.state.localVars}; |
| 227 | } |
| 228 | function popcontext() { |
| 229 | cx.state.localVars = cx.state.context.vars; |
| 230 | cx.state.context = cx.state.context.prev; |
nothing calls this directly
no outgoing calls
no test coverage detected