MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / DebugWriteProperty

Method DebugWriteProperty

source/script_object.cpp:3171–3182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3169#ifdef CONFIG_DEBUGGER
3170
3171void IObject::DebugWriteProperty(IDebugProperties *aDebugger, int aPage, int aPageSize, int aMaxDepth)
3172{
3173 DebugCookie cookie;
3174 aDebugger->BeginProperty(NULL, "object", 0, cookie);
3175 //if (aPage == 0)
3176 //{
3177 // // This is mostly a workaround for debugger clients which make it difficult to
3178 // // tell when a property contains an object with no child properties of its own:
3179 // aDebugger->WriteProperty("Note", _T("This object doesn't support debugging."));
3180 //}
3181 aDebugger->EndProperty(cookie);
3182}
3183
3184#endif

Callers

nothing calls this directly

Calls 2

BeginPropertyMethod · 0.80
EndPropertyMethod · 0.80

Tested by

no test coverage detected