Skip to content

Commit

Permalink
Update tooling/debugger/src/lib.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Tom French <[email protected]>
  • Loading branch information
mverzilli and TomAFrench authored Oct 13, 2023
1 parent 8622d70 commit f0b3ecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tooling/debugger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl<'backend, B: BlackBoxFunctionSolver> DebugContext<'backend, B> {
let source = &file.source.as_str();
let start = loc.span.start() as usize;
let end = loc.span.end() as usize;
println!("At {}:{start}-{end}", file.path.as_path().display());
println!("At {}.nr:{start}-{end}", file.path.as_path().display());
println!("\n{}\n", &source[start..end]);
}
}
Expand Down

0 comments on commit f0b3ecf

Please sign in to comment.