Skip to content

Commit

Permalink
breakpoint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
apoorvsadana committed Jul 1, 2023
1 parent 24a6512 commit 71d2969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cairo-vm-tracer/static/tracer.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ function toggle_breakpoint(event) {

function has_breakpoint(step) {
return (
$(".inst" + trace[step].pc).hasClass("breakpoint") ||
$("#mem_row" + trace[step].pc).hasClass("breakpoint") ||
$("#mem_row" + memory_accesses[step].dst).hasClass("breakpoint") ||
$("#mem_row" + memory_accesses[step].op0).hasClass("breakpoint") ||
$("#mem_row" + memory_accesses[step].op1).hasClass("breakpoint")
Expand Down

0 comments on commit 71d2969

Please sign in to comment.