| 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); |
| 1783 | |
| 1784 | current_context = self; |
| 1785 | } |
| 1786 | |
| 1787 | namespace Gjs { |
| 1788 | /** |
no outgoing calls
no test coverage detected