util.debug: Fix locals being reported under wrong stack frame in some cases (+tests!!)

This commit is contained in:
Matthew Wild 2020-10-16 13:38:04 +01:00
parent 20fc0c9c15
commit a095a0c533
2 changed files with 94 additions and 1 deletions

View file

@ -104,7 +104,7 @@ local function get_traceback_table(thread, start_level)
levels[(level-start_level)+1] = {
level = level;
info = info;
locals = get_locals_table(thread, level+(thread and 0 or 1));
locals = get_locals_table(thread, level+1);
upvalues = get_upvalues_table(info.func);
};
end