| 8154 | IMutableContext *IMutableContext::currentContext = nullptr; |
| 8155 | |
| 8156 | void IMutableContext::createContext() |
| 8157 | { |
| 8158 | currentContext = new Context(); |
| 8159 | } |
| 8160 | |
| 8161 | void cleanUpContext() { |
| 8162 | delete IMutableContext::currentContext; |
nothing calls this directly
no outgoing calls
no test coverage detected