Skip to content

Commit

Permalink
Use Freeze for SourceFile.lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoxc committed Sep 7, 2023
1 parent d4f12a5 commit 4ecfd30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debuginfo/line_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl DebugContext {

match tcx.sess.source_map().lookup_line(span.lo()) {
Ok(SourceFileAndLine { sf: file, line }) => {
let line_pos = file.lines(|lines| lines[line]);
let line_pos = file.lines()[line];
let col = file.relative_position(span.lo()) - line_pos;

(file, u64::try_from(line).unwrap() + 1, u64::from(col.to_u32()) + 1)
Expand Down

0 comments on commit 4ecfd30

Please sign in to comment.