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

Function dbgCtxDestroy

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

Source from the content-addressed store, hash-verified

353
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); }

Callers 1

~StackContextMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected