NOLINTNEXTLINE(readability-convert-member-functions-to-static)
| 72 | |
| 73 | // NOLINTNEXTLINE(readability-convert-member-functions-to-static) |
| 74 | void debug(const char* what GJS_USED_VERBOSE_LIFECYCLE) { |
| 75 | gjs_debug_lifecycle(GJS_DEBUG_GBOXED, |
| 76 | "%s: ObjectBox %p, JSObject %s", what, m_parent, |
| 77 | gjs_debug_object(m_root).c_str()); |
| 78 | } |
| 79 | |
| 80 | ObjectBox* m_parent; |
| 81 | JS::Heap<JSObject*> m_root; |
nothing calls this directly
no test coverage detected