| 10334 | IMutableContext *IMutableContext::currentContext = nullptr; |
| 10335 | |
| 10336 | void IMutableContext::createContext() |
| 10337 | { |
| 10338 | currentContext = new Context(); |
| 10339 | } |
| 10340 | |
| 10341 | void cleanUpContext() { |
| 10342 | delete IMutableContext::currentContext; |
nothing calls this directly
no outgoing calls
no test coverage detected