MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / breakHere

Function breakHere

emmy_debugger/src/debugger/emmy_debugger_lib.cpp:78–83  ·  view source on GitHub ↗

emmy.breakHere(): bool

Source from the content-addressed store, hash-verified

76
77// emmy.breakHere(): bool
78int breakHere(lua_State* L)
79{
80 const bool suc = EmmyFacade::Get().BreakHere(L);
81 lua_pushboolean(L, suc);
82 return 1;
83}
84
85// emmy.waitIDE(timeout: number): void
86int waitIDE(lua_State* L)

Callers

nothing calls this directly

Calls 2

BreakHereMethod · 0.80
lua_pushbooleanFunction · 0.50

Tested by

no test coverage detected