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

Underlining with ~ for missing parameters in long functions overflows the terminal width #101242

Open
poliorcetics opened this issue Aug 31, 2022 · 4 comments
Labels
A-diagnostics Area: Messages for errors, warnings, and lints A-suggestion-diagnostics Area: Suggestions generated by the compiler applied by `cargo fix` D-papercut Diagnostics: An error or lint that needs small tweaks. D-verbose Diagnostics: Too much output caused by a single piece of incorrect code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@poliorcetics
Copy link
Contributor

Given the following code: playground

use std::collections::{BTreeSet, HashMap, VecDeque};
use std::sync::{Arc, Mutex};

fn main() {
    my_very_long_function_name_with_lots_of_args();
}

fn my_very_long_function_name_with_lots_of_args(
    _first_long_param: bool,
    _second_long_param: HashMap<Arc<String>, Vec<BTreeSet<usize>>>,
    _third_long_param: usize,
    _fourth_long_param: String,
    _fifth_long_param: Mutex<Option<VecDeque<Arc<String>>>>,
) {
}

The current output is:

error[E0061]: this function takes 5 arguments but 0 arguments were supplied
  --> src/main.rs:5:5
   |
5  |     my_very_long_function_name_with_lots_of_args();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-- multiple arguments are missing
   |
note: function defined here
  --> src/main.rs:8:4
   |
8  | fn my_very_long_function_name_with_lots_of_args(
   |    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9  |     _first_long_param: bool,
   |     -----------------------
10 |     _second_long_param: HashMap<Arc<String>, Vec<BTreeSet<usize>>>,
   |     --------------------------------------------------------------
11 |     _third_long_param: usize,
   |     ------------------------
12 |     _fourth_long_param: String,
   |     --------------------------
13 |     _fifth_long_param: Mutex<Option<VecDeque<Arc<String>>>>,
   |     -------------------------------------------------------
help: provide the arguments
   |
5  |     my_very_long_function_name_with_lots_of_args(/* bool */, /* std::collections::HashMap<std::sync::Arc<std::string::String>, std::vec::Vec<std::collections::BTreeSet<usize>>> */, /* usize */, /* std::string::String */, /* std::sync::Mutex<std::option::Option<std::collections::VecDeque<std::sync::Arc<std::string::String>>>> */);
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

For more information about this error, try `rustc --explain E0061`.
error: could not compile `pg2` due to previous error

Screenshot:

Underlining with a tilde '~' takes up two lines because the terminal width is not large enough

Ideally this could be like the first part, with one parameter on each line ? This would also improve readability of the types I think

@poliorcetics poliorcetics added A-diagnostics Area: Messages for errors, warnings, and lints T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Aug 31, 2022
@poliorcetics poliorcetics changed the title Underlining with ~ for missing parameters in long functions overflow Underlining with ~ for missing parameters in long functions overflows the terminal width Aug 31, 2022
@estebank estebank added A-suggestion-diagnostics Area: Suggestions generated by the compiler applied by `cargo fix` D-papercut Diagnostics: An error or lint that needs small tweaks. D-verbose Diagnostics: Too much output caused by a single piece of incorrect code. labels Aug 31, 2022
@estebank
Copy link
Contributor

This was one of the follow up items for the PR that introduced this: make the suggestion as small and targeted as possible.

@compiler-errors
Copy link
Member

compiler-errors commented Sep 1, 2022

oh goodness lol

it's quite hard, in general, to make this argument algorithm better at printing just the minimal changes needed. But it should be quite possible to do this:

Ideally this could be like the first part, with one parameter on each line ?

@compiler-errors
Copy link
Member

And it should be quite possible to do this in special cases too, like when you're just adding arguments or just removing them.

@estebank
Copy link
Contributor

estebank commented Sep 1, 2022

@compiler-errors I think those are the ones that will be easiest to deal with and that if we only do that, it'd be quite an improvement. The other change that can be generalized is to only target the span between the parens, instead of the whole call expr span.

matthiaskrgr added a commit to matthiaskrgr/rust that referenced this issue Sep 3, 2022
…ns, r=wesleywiser

Shrink suggestion span of argument mismatch error

This doesn't really help with rust-lang#101242, but I wanted to put this up while I work on other fixes.
matthiaskrgr added a commit to matthiaskrgr/rust that referenced this issue Sep 3, 2022
…ns, r=wesleywiser

Shrink suggestion span of argument mismatch error

This doesn't really help with rust-lang#101242, but I wanted to put this up while I work on other fixes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints A-suggestion-diagnostics Area: Suggestions generated by the compiler applied by `cargo fix` D-papercut Diagnostics: An error or lint that needs small tweaks. D-verbose Diagnostics: Too much output caused by a single piece of incorrect code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

3 participants