Move pattern matching outside of the loop

This commit is contained in:
Guillaume Gomez 2021-12-21 22:17:17 +01:00
parent 60f3bd78ee
commit 0d33f6dfa9

View File

@ -280,13 +280,15 @@ crate fn print_src(
tmp /= 10; tmp /= 10;
} }
line_numbers.write_str("<pre class=\"line-numbers\">"); line_numbers.write_str("<pre class=\"line-numbers\">");
for i in 1..=lines { match source_context {
match source_context { SourceContext::Standalone => {
SourceContext::Standalone => { for line in 1..=lines {
writeln!(line_numbers, "<span id=\"{0}\">{0:1$}</span>", i, cols) writeln!(line_numbers, "<span id=\"{0}\">{0:1$}</span>", line, cols)
} }
SourceContext::Embedded { offset } => { }
writeln!(line_numbers, "<span>{0:1$}</span>", i + offset, cols) SourceContext::Embedded { offset } => {
for line in 1..=lines {
writeln!(line_numbers, "<span>{0:1$}</span>", line + offset, cols)
} }
} }
} }