MCPcopy Create free account
hub / github.com/GNOME/gjs / to_string_kind

Method to_string_kind

gi/object.cpp:3365–3369  ·  view source on GitHub ↗

* ObjectInstance::to_string_kind: * * ObjectInstance shows a "disposed" marker in its toString() method if the * wrapped GObject has already been disposed. */

Source from the content-addressed store, hash-verified

3363 * wrapped GObject has already been disposed.
3364 */
3365const char* ObjectInstance::to_string_kind() const {
3366 if (m_gobj_finalized)
3367 return "object (FINALIZED)";
3368 return m_gobj_disposed ? "object (DISPOSED)" : "object";
3369}
3370
3371/**
3372 * ObjectBase::init_gobject:

Callers 1

to_stringMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected