We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d81174d + 0596f03 commit a8e05d8Copy full SHA for a8e05d8
web/debugger.mjs
@@ -374,6 +374,14 @@ class Stepper {
374
table.classList.add("showText");
375
decArgs.append(table);
376
table.append(charCodeRow, fontCharRow, unicodeRow);
377
+ } else if (fn === "constructPath") {
378
+ const [op, [path], minMax] = args;
379
+ decArgs = this.#c("td");
380
+ decArgs.append(JSON.stringify(this.#simplifyArgs(path)));
381
+ decArgs.append(this.#c("br"));
382
+ decArgs.append(`minMax: ${JSON.stringify(this.#simplifyArgs(minMax))}`);
383
384
+ decArgs.append(`→ ${opMap[op]}`);
385
} else if (fn === "restore" && this.indentLevel > 0) {
386
this.indentLevel--;
387
}
0 commit comments