Skip to content
This repository was archived by the owner on Nov 24, 2023. It is now read-only.

Commit 635eef7

Browse files
committed
Fix panic computing indentation.
1 parent e6dabf1 commit 635eef7

File tree

3 files changed

+62
-1
lines changed

3 files changed

+62
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ fn parse_snippet(span: &DiagnosticSpan) -> Option<Snippet> {
100100
.chars()
101101
.take_while(|&c| char::is_whitespace(c))
102102
.count();
103-
std::cmp::min(indent, line.highlight_start)
103+
std::cmp::min(indent, line.highlight_start - 1)
104104
})
105105
.min()?;
106106

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"message": "non-ASCII whitespace symbol '\\u{a0}' is not skipped",
3+
"code": null,
4+
"level": "warning",
5+
"spans":
6+
[
7+
{
8+
"file_name": "lib.rs",
9+
"byte_start": 26,
10+
"byte_end": 28,
11+
"line_start": 2,
12+
"line_end": 2,
13+
"column_start": 1,
14+
"column_end": 2,
15+
"is_primary": false,
16+
"text":
17+
[
18+
{
19+
"text": " indented\";",
20+
"highlight_start": 1,
21+
"highlight_end": 2
22+
}
23+
],
24+
"label": "non-ASCII whitespace symbol '\\u{a0}' is not skipped",
25+
"suggested_replacement": null,
26+
"suggestion_applicability": null,
27+
"expansion": null
28+
},
29+
{
30+
"file_name": "lib.rs",
31+
"byte_start": 24,
32+
"byte_end": 28,
33+
"line_start": 1,
34+
"line_end": 2,
35+
"column_start": 25,
36+
"column_end": 2,
37+
"is_primary": true,
38+
"text":
39+
[
40+
{
41+
"text": "pub static FOO: &str = \"\\",
42+
"highlight_start": 25,
43+
"highlight_end": 26
44+
},
45+
{
46+
"text": " indented\";",
47+
"highlight_start": 1,
48+
"highlight_end": 2
49+
}
50+
],
51+
"label": null,
52+
"suggested_replacement": null,
53+
"suggestion_applicability": null,
54+
"expansion": null
55+
}
56+
],
57+
"children":
58+
[],
59+
"rendered": "warning: non-ASCII whitespace symbol '\\u{a0}' is not skipped\n --> lib.rs:1:25\n |\n1 | pub static FOO: &str = \"\\\n | _________________________^\n2 | |  indented\";\n | | ^ non-ASCII whitespace symbol '\\u{a0}' is not skipped\n | |_|\n | \n\n"
60+
}

tests/edge_cases.rs

+1
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ expect_empty_json_test! {out_of_bounds_test, "out_of_bounds.recorded.json"}
2222
expect_empty_json_test! {utf8_identifiers_test, "utf8_idents.recorded.json"}
2323
expect_empty_json_test! {empty, "empty.json"}
2424
expect_empty_json_test! {no_main, "no_main.json"}
25+
expect_empty_json_test! {indented_whitespace, "indented_whitespace.json"}

0 commit comments

Comments
 (0)