Skip to content

Display \t in diagnostics code as four spaces #45953

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 6, 2017
Merged
Show file tree
Hide file tree
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
17 changes: 14 additions & 3 deletions src/librustc_errors/styled_buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,21 @@ impl StyledBuffer {
}

fn replace_tabs(&mut self) {
for line in self.text.iter_mut() {
for c in line.iter_mut() {
for (line_pos, line) in self.text.iter_mut().enumerate() {
let mut tab_pos = vec![];
for (pos, c) in line.iter().enumerate() {
if *c == '\t' {
*c = ' ';
tab_pos.push(pos);
}
}
// start with the tabs at the end of the line to replace them with 4 space chars
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Am I missing something...? Why is it useful/important to go in reverse? (Doesn't seem harmful, but also not imp't.)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh, I see, duh. Otherwise the indices are invalid.

for pos in tab_pos.iter().rev() {
assert_eq!(line.remove(*pos), '\t');
// fix the position of the style to match up after replacing the tabs
let s = self.styles[line_pos].remove(*pos);
for _ in 0..4 {
line.insert(*pos, ' ');
self.styles[line_pos].insert(*pos, s);
}
}
}
Expand Down
15 changes: 12 additions & 3 deletions src/libsyntax_pos/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -503,13 +503,16 @@ pub enum NonNarrowChar {
ZeroWidth(BytePos),
/// Represents a wide (fullwidth) character
Wide(BytePos),
/// Represents a tab character, represented visually with a width of 4 characters
Tab(BytePos),
}

impl NonNarrowChar {
fn new(pos: BytePos, width: usize) -> Self {
match width {
0 => NonNarrowChar::ZeroWidth(pos),
2 => NonNarrowChar::Wide(pos),
4 => NonNarrowChar::Tab(pos),
_ => panic!("width {} given for non-narrow character", width),
}
}
Expand All @@ -518,7 +521,8 @@ impl NonNarrowChar {
pub fn pos(&self) -> BytePos {
match *self {
NonNarrowChar::ZeroWidth(p) |
NonNarrowChar::Wide(p) => p,
NonNarrowChar::Wide(p) |
NonNarrowChar::Tab(p) => p,
}
}

Expand All @@ -527,6 +531,7 @@ impl NonNarrowChar {
match *self {
NonNarrowChar::ZeroWidth(_) => 0,
NonNarrowChar::Wide(_) => 2,
NonNarrowChar::Tab(_) => 4,
}
}
}
Expand All @@ -538,6 +543,7 @@ impl Add<BytePos> for NonNarrowChar {
match self {
NonNarrowChar::ZeroWidth(pos) => NonNarrowChar::ZeroWidth(pos + rhs),
NonNarrowChar::Wide(pos) => NonNarrowChar::Wide(pos + rhs),
NonNarrowChar::Tab(pos) => NonNarrowChar::Tab(pos + rhs),
}
}
}
Expand All @@ -549,6 +555,7 @@ impl Sub<BytePos> for NonNarrowChar {
match self {
NonNarrowChar::ZeroWidth(pos) => NonNarrowChar::ZeroWidth(pos - rhs),
NonNarrowChar::Wide(pos) => NonNarrowChar::Wide(pos - rhs),
NonNarrowChar::Tab(pos) => NonNarrowChar::Tab(pos - rhs),
}
}
}
Expand Down Expand Up @@ -868,8 +875,10 @@ impl FileMap {

pub fn record_width(&self, pos: BytePos, ch: char) {
let width = match ch {
'\t' | '\n' =>
// Tabs will consume one column.
'\t' =>
// Tabs will consume 4 columns.
4,
'\n' =>
// Make newlines take one column so that displayed spans can point them.
1,
ch =>
Expand Down
8 changes: 4 additions & 4 deletions src/test/ui/codemap_tests/tab.stderr
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
error[E0425]: cannot find value `bar` in this scope
--> $DIR/tab.rs:14:2
|
14 | bar; //~ ERROR cannot find value `bar`
| ^^^ not found in this scope
14 | bar; //~ ERROR cannot find value `bar`
| ^^^ not found in this scope

error[E0308]: mismatched types
--> $DIR/tab.rs:18:2
|
17 | fn foo() {
| - help: try adding a return type: `-> &'static str `
18 | "bar boo" //~ ERROR mismatched types
| ^^^^^^^^^^^ expected (), found reference
18 | "bar boo" //~ ERROR mismatched types
| ^^^^^^^^^^^^^^^^^^^^ expected (), found reference
|
= note: expected type `()`
found type `&'static str`
Expand Down
4 changes: 2 additions & 2 deletions src/test/ui/codemap_tests/tab_2.stderr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
error: unterminated double quote string
--> $DIR/tab_2.rs:14:7
|
14 | """; //~ ERROR unterminated double quote
| _______^
14 | """; //~ ERROR unterminated double quote
| ___________________^
15 | | }
| |__^

Expand Down
10 changes: 5 additions & 5 deletions src/test/ui/codemap_tests/tab_3.stderr
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
error[E0382]: use of moved value: `some_vec`
--> $DIR/tab_3.rs:17:20
|
15 | some_vec.into_iter();
| -------- value moved here
16 | {
17 | println!("{:?}", some_vec); //~ ERROR use of moved
| ^^^^^^^^ value used here after move
15 | some_vec.into_iter();
| -------- value moved here
16 | {
17 | println!("{:?}", some_vec); //~ ERROR use of moved
| ^^^^^^^^ value used here after move
|
= note: move occurs because `some_vec` has type `std::vec::Vec<&str>`, which does not implement the `Copy` trait

Expand Down