Skip to content

Commit 45e19aa

Browse files
committed
Use relative positions inside a SourceFile.
1 parent eb349e3 commit 45e19aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parse/session.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ impl ParseSess {
268268
let source_file = self.parse_sess.source_map().lookup_char_pos(span.lo()).file;
269269
SnippetProvider::new(
270270
source_file.start_pos,
271-
source_file.end_pos,
271+
source_file.end_position(),
272272
Lrc::clone(source_file.src.as_ref().unwrap()),
273273
)
274274
}

0 commit comments

Comments
 (0)