This commit is contained in:
Folkert 2021-02-20 19:30:05 +01:00
parent 9f60ba2557
commit 3a35bcb3cb
2 changed files with 1 additions and 6 deletions

View file

@ -1404,10 +1404,6 @@ fn starts_with_keyword(rest_of_line: &str, keyword: &str) -> bool {
}
}
fn next_is_arrow(rest_of_line: &str) -> bool {
rest_of_line.starts_with("->")
}
fn next_line_starts_with_close_curly(source_lines: &[&str], row: Row) -> Option<(Row, Col)> {
match source_lines.get(row as usize + 1) {
None => None,