Skip to content

Commit

Permalink
Show the debug arguments correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
yazz committed Jan 28, 2025
1 parent 57860f8 commit bd74f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/go.html
Original file line number Diff line number Diff line change
Expand Up @@ -13569,7 +13569,7 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
//
let sourceForFunction = yz.debug.internal.findScopeForDebugId(fnDebugId)
if (sourceForFunction.found) {
const argsArray = Array.from(arguments).slice(3);
const argsArray = Array.from(Array.from(arguments)[3]).slice(2)
//let callerLogItem = yz.debug.debugTraceStepsV2[yz.debug.debugTraceStepsV2.length - 1]
let callerLogItem = currentDebugThread.debugTraceStepsV3[currentDebugThread.debugTraceStepsV3.length - 1]
if (callerLogItem) {
Expand Down

0 comments on commit bd74f3b

Please sign in to comment.