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

Function LastLevel

emmy_debugger/src/debugger/emmy_debugger.cpp:917–926  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

915}
916
917int LastLevel(lua_State *L) {
918 int level = 0;
919
920 lua_Debug ar;
921 while (lua_getstack(L, level, &ar)) {
922 level++;
923 }
924
925 return level;
926}
927
928// host thread
929bool Debugger::DoEval(std::shared_ptr<EvalContext> evalContext) {

Callers 1

DoEvalMethod · 0.85

Calls 1

lua_getstackFunction · 0.50

Tested by

no test coverage detected