Skip to content

Commit

Permalink
chore: revert change
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Apr 24, 2024
1 parent 1989fa2 commit e0b8c23
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions noir/noir-repo/tooling/debugger/src/repl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ impl<'a, B: BlackBoxFunctionSolver> ReplDebugger<'a, B> {
let brillig_marker = |acir_index, brillig_index| {
if current_acir_index == Some(acir_index) && brillig_index == current_brillig_index {
"->"
} else if self
.context
.is_breakpoint_set(&OpcodeLocation::Brillig { acir_index, brillig_index })
{
" *"
} else {
""
}
Expand Down

0 comments on commit e0b8c23

Please sign in to comment.