MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / dbgCtxAttach

Function dbgCtxAttach

src/hx/Debugger.cpp:356–356  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

354DebuggerContext *dbgCtxCreate(StackContext *inStack) { return new DebuggerContext(inStack); }
355void dbgCtxDestroy(DebuggerContext *ctx) { delete ctx; }
356void dbgCtxAttach(DebuggerContext *ctx, StackContext *inStack) { ctx->attach(inStack); }
357void dbgCtxDetach(DebuggerContext *ctx) { ctx->detach(); }
358void dbgCtxEnable(DebuggerContext *ctx, bool inEnable) { ctx->enable(inEnable); }
359

Callers 1

onThreadAttachMethod · 0.85

Calls 1

attachMethod · 0.45

Tested by

no test coverage detected