MCPcopy Create free account
hub / github.com/dail8859/NotepadNext / stackdump

Function stackdump

src/LuaExtension.cpp:178–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177
178void stackdump(lua_State* l)
179{
180 int i;
181 int top = lua_gettop(l);
182
183 for (i = 1; i <= top; i++)
184 { /* repeat for each level */
185 int t = lua_type(l, i);
186 hostTrace(lua_typename(l, t));
187 hostTrace(" "); /* put a separator */
188 }
189 hostTrace("\n"); /* end the listing */
190}
191
192static NppExtensionAPIPane check_pane_object(lua_State *L, int index) {
193 NppExtensionAPIPane *pPane = static_cast<NppExtensionAPIPane *>(luaL_testudata(L, index, "Nn_MT_Pane"));

Callers

nothing calls this directly

Calls 1

hostTraceFunction · 0.85

Tested by

no test coverage detected