| 176 | } |
| 177 | |
| 178 | void 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 | |
| 192 | static NppExtensionAPIPane check_pane_object(lua_State *L, int index) { |
| 193 | NppExtensionAPIPane *pPane = static_cast<NppExtensionAPIPane *>(luaL_testudata(L, index, "Nn_MT_Pane")); |
nothing calls this directly
no test coverage detected