| 1777 | static GjsContext* current_context; |
| 1778 | |
| 1779 | GjsContext* gjs_context_get_current() { return current_context; } |
| 1780 | |
| 1781 | void gjs_context_make_current(GjsContext* self) { |
| 1782 | g_assert(self == nullptr || current_context == nullptr); |
no outgoing calls
no test coverage detected