| 10211 | IMutableContext *IMutableContext::currentContext = nullptr; |
| 10212 | |
| 10213 | void IMutableContext::createContext() |
| 10214 | { |
| 10215 | currentContext = new Context(); |
| 10216 | } |
| 10217 | |
| 10218 | void cleanUpContext() { |
| 10219 | delete IMutableContext::currentContext; |
nothing calls this directly
no outgoing calls
no test coverage detected