Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion crates/cairo-lang-filesystem/src/location_marks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ pub fn get_location_marks(

/// Given a single line diagnostic location, returns a string with the location marks.
fn get_single_line_location_marks(db: &dyn Database, location: &SpanInFile<'_>) -> String {
// TODO(ilya, 10/10/2023): Handle locations which spread over a few lines.
let content = db.file_content(location.file_id).expect("File missing from DB.");
let summary = db.file_summary(location.file_id).expect("File missing from DB.");
let span = &location.span;
Expand Down