1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-25 22:53:16 +00:00

symbolslots nil when there are no symbols, changed debugger to not have special case

This commit is contained in:
Jona Ekenberg 2023-02-01 11:25:52 +01:00
parent 587aa87d28
commit 624a6cf619
2 changed files with 3 additions and 2 deletions

View File

@ -2774,8 +2774,7 @@
(loop [[birth death slot sym] :in symbolslots]
(when (and (<= birth pc)
(or (= death 0)
(< pc death)))
(< pc death))
(put nextenv (symbol sym) @{:value (get-in frame [:slots slot])})))
(merge-into nextenv debugger-env)

View File

@ -883,6 +883,8 @@ static Janet janet_disasm_slotcount(JanetFuncDef *def) {
}
static Janet janet_disasm_symbolslots(JanetFuncDef *def) {
// *debug* was probably not true when compiling the function
if (def->symbolslots == NULL) { return janet_wrap_nil(); }
JanetArray *symbolslots = janet_array(def->symbolslots_length);
for (int32_t i = 0; i < def->symbolslots_length; i++) {
JanetSymbolSlot ss = def->symbolslots[i];