Skip to content
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

Always show end line of multiline annotations #41136

Merged
merged 1 commit into from
Apr 9, 2017

Conversation

estebank
Copy link
Contributor

@estebank estebank commented Apr 7, 2017

error[E0046]: not all trait items implemented, missing: `Item`
  --> $DIR/issue-23729.rs:20:9
   |
20 |           impl Iterator for Recurrence {
   |  _________^ starting here...
21 | |             //~^ ERROR E0046
22 | |             //~| NOTE missing `Item` in implementation
23 | |             //~| NOTE `Item` from trait: `type Item;`
...  |
36 | |             }
37 | |         }
   | |_________^ ...ending here: missing `Item` in implementation
   |
   = note: `Item` from trait: `type Item;`

instead of

error[E0046]: not all trait items implemented, missing: `Item`
  --> $DIR/issue-23729.rs:20:9
   |
20 |         impl Iterator for Recurrence {
   |         ^ missing `Item` in implementation
   |
   = note: `Item` from trait: `type Item;`

@rust-highfive
Copy link
Contributor

r? @nrc

(rust_highfive has picked a reviewer for you, use r? to override)

@nrc
Copy link
Member

nrc commented Apr 7, 2017

r? @jonathandturner

My personal opinion - this looks like an improvement - I find the new error more visually attractive, however, I don't think it adds anything to the explanatory power of the error message and everything else being equal, I prefer the more compact form (disclaimer, I'm only looking at the example in the comment here, perhaps there are other errors where this is more advantageous?)

@estebank
Copy link
Contributor Author

estebank commented Apr 7, 2017

@nrc I'm of the opinion that errors like the example should look like this:

error[E0046]: not all trait items implemented, missing: `Item`
  --> $DIR/issue-23729.rs:20:9
   |
20 |           impl Iterator for Recurrence {
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `Item` in implementation
   |
   = note: `Item` from trait: `type Item;`

(as proposed in PR #38328, and issues #35965 and #38246) and leave multiline spans only for situations where they are actually useful, like:

  --> <anon>:2:5
   |
2  |       fn foo(
   |  _____^ starting here...
3  | |         a: usize,
4  | |         b: usize,
5  | |         c: usize)
6  | |         -> usize {
   | |________________^ ...ending here: foo definition span

@nrc
Copy link
Member

nrc commented Apr 7, 2017

@estebank perhaps I misunderstood - from the first comment I thought this PR did exactly the opposite of that?

@estebank
Copy link
Contributor Author

estebank commented Apr 7, 2017

@nrc this PR makes affects every multiline span.

A separate aim I have is to reduce how many multiline spans are actually used in diagnostics. I believe that every Item element should have a diagnostic_span separate from the span that is used now, that only covers the beginning. This would leave multiline spans only to be used for signatures that span multiple lines and blocks, which are used also for lifetimes, where the beginning and end is relevant. That would make multiline spans less frequent than they are now. Until that change is done though, this change would indeed make things noisier.

@estebank
Copy link
Contributor Author

estebank commented Apr 7, 2017

An example of a valid multiline span usage IMO:

note: the anonymous lifetime #1 defined on the body at 30:83...
  --> file.rs:30:84
   |
30 |       pub fn child_at_index_mut(&mut self, index: &NodeChildIndex) -> &mut NodeChild {
   |  ____________________________________________________________________________________^ starting here...
31 | |         self.children[index.index].borrow_mut()
32 | |     }
   | |_____^ ...ending here
note: ...does not necessarily outlive the lifetime 'a as defined on the body at 30:83
  --> file.rs:30:84
   |
30 |       pub fn child_at_index_mut(&mut self, index: &NodeChildIndex) -> &mut NodeChild {
   |  ____________________________________________________________________________________^ starting here...
31 | |         self.children[index.index].borrow_mut()
32 | |     }
   | |_____^ ...ending here

@estebank estebank force-pushed the multiline branch 3 times, most recently from 13015f4 to e1f190f Compare April 8, 2017 08:12
@sophiajt
Copy link
Contributor

sophiajt commented Apr 9, 2017

@estebank - for that example do you have what we show today?

@estebank
Copy link
Contributor Author

estebank commented Apr 9, 2017

@jonathandturner, on the description of the PR there's an example of after and before. If a span is under 8 lines, we show the entire span, otherwise we only point at the first character.

This PR changes this to show in full spans shorter or equal to 7 lines, and longer spans show the first 4 lines and last two. (I thought about showing the last line only, but that would in most cases be just }, which isn't that illuminating.)

```rust
error[E0046]: not all trait items implemented, missing: `Item`
  --> $DIR/issue-23729.rs:20:9
   |
20 |           impl Iterator for Recurrence {
   |  _________^ starting here...
21 | |             //~^ ERROR E0046
22 | |             //~| NOTE missing `Item` in implementation
23 | |             //~| NOTE `Item` from trait: `type Item;`
...  |
36 | |             }
37 | |         }
   | |_________^ ...ending here: missing `Item` in implementation
   |
   = note: `Item` from trait: `type Item;`
```

instead of

```rust
error[E0046]: not all trait items implemented, missing: `Item`
  --> $DIR/issue-23729.rs:20:9
   |
20 |         impl Iterator for Recurrence {
   |         ^ missing `Item` in implementation
   |
   = note: `Item` from trait: `type Item;`
```
@sophiajt
Copy link
Contributor

sophiajt commented Apr 9, 2017

Sure, seems fine. I agree with @nrc that it mostly is a visual fix, which is fine.

@bors r+

@bors
Copy link
Collaborator

bors commented Apr 9, 2017

📌 Commit 4bc7f5b has been approved by jonathandturner

@bors
Copy link
Collaborator

bors commented Apr 9, 2017

⌛ Testing commit 4bc7f5b with merge ad36c2f...

bors added a commit that referenced this pull request Apr 9, 2017
Always show end line of multiline annotations

```rust
error[E0046]: not all trait items implemented, missing: `Item`
  --> $DIR/issue-23729.rs:20:9
   |
20 |           impl Iterator for Recurrence {
   |  _________^ starting here...
21 | |             //~^ ERROR E0046
22 | |             //~| NOTE missing `Item` in implementation
23 | |             //~| NOTE `Item` from trait: `type Item;`
...  |
36 | |             }
37 | |         }
   | |_________^ ...ending here: missing `Item` in implementation
   |
   = note: `Item` from trait: `type Item;`
```

instead of

```rust
error[E0046]: not all trait items implemented, missing: `Item`
  --> $DIR/issue-23729.rs:20:9
   |
20 |         impl Iterator for Recurrence {
   |         ^ missing `Item` in implementation
   |
   = note: `Item` from trait: `type Item;`
```
@bors
Copy link
Collaborator

bors commented Apr 9, 2017

☀️ Test successful - status-appveyor, status-travis
Approved by: jonathandturner
Pushing ad36c2f to master...

@bors bors merged commit 4bc7f5b into rust-lang:master Apr 9, 2017
//
// After this we will have:
//
// 2 | fn foo() {
// | __________
// | | |
// | |
// 3 | |
Copy link
Member

Choose a reason for hiding this comment

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

Why is this | deleted?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants