rust/src/test/ui/fmt
Jack Huey b6c87c555f Implementation for 65853
This attempts to bring better error messages to invalid method calls, by applying some heuristics to identify common mistakes.

The algorithm is inspired by Levenshtein distance and longest common sub-sequence.   In essence, we treat the types of the function, and the types of the arguments you provided as two "words" and compute the edits to get from one to the other.

We then modify that algorithm to detect 4 cases:

 - A function input is missing
 - An extra argument was provided
 - The type of an argument is straight up invalid
 - Two arguments have been swapped
 - A subset of the arguments have been shuffled

(We detect the last two as separate cases so that we can detect two swaps, instead of 4 parameters permuted.)

It helps to understand this argument by paying special attention to terminology: "inputs" refers to the inputs being *expected* by the function, and "arguments" refers to what has been provided at the call site.

The basic sketch of the algorithm is as follows:

 - Construct a boolean grid, with a row for each argument, and a column for each input.  The cell [i, j] is true if the i'th argument could satisfy the j'th input.
 - If we find an argument that could satisfy no inputs, provided for an input that can't be satisfied by any other argument, we consider this an "invalid type".
 - Extra arguments are those that can't satisfy any input, provided for an input that *could* be satisfied by another argument.
 - Missing inputs are inputs that can't be satisfied by any argument, where the provided argument could satisfy another input
 - Swapped / Permuted arguments are identified with a cycle detection algorithm.

As each issue is found, we remove the relevant inputs / arguments and check for more issues.  If we find no issues, we match up any "valid" arguments, and start again.

Note that there's a lot of extra complexity:
 - We try to stay efficient on the happy path, only computing the diagonal until we find a problem, and then filling in the rest of the matrix.
 - Closure arguments are wrapped in a tuple and need to be unwrapped
 - We need to resolve closure types after the rest, to allow the most specific type constraints
 - We need to handle imported C functions that might be variadic in their inputs.

I tried to document a lot of this in comments in the code and keep the naming clear.
2022-04-16 02:26:56 -04:00
..
format-args-capture-issue-93378.rs Extend format-args capture test. 2022-01-28 00:20:25 +01:00
format-args-capture-issue-93378.stderr Correctly mark the span of captured arguments in format_args!() 2022-02-16 07:34:06 +00:00
format-args-capture-issue-94010.rs Correctly mark the span of captured arguments in format_args!() 2022-02-16 07:34:06 +00:00
format-args-capture-issue-94010.stderr Correctly mark the span of captured arguments in format_args!() 2022-02-16 07:34:06 +00:00
format-args-capture-macro-hygiene.rs Stabilize format_args_capture 2021-11-15 10:14:29 +01:00
format-args-capture-macro-hygiene.stderr Update test output 2021-11-15 10:14:33 +01:00
format-args-capture-missing-variables.rs Stabilize format_args_capture 2021-11-15 10:14:29 +01:00
format-args-capture-missing-variables.stderr Correctly mark the span of captured arguments in format_args!() 2022-02-16 07:34:06 +00:00
format-args-capture.rs replace feature expression (cfg_panic) in lib and remove expression from tests 2022-02-10 22:06:47 +00:00
format-concat-span.rs Fix span calculation in format strings 2021-06-07 17:42:42 +02:00
format-concat-span.stderr Fix span calculation in format strings 2021-06-07 17:42:42 +02:00
format-string-error-2.rs Update format string tests to explicitly escape multiple newlines 2021-08-11 11:35:08 +02:00
format-string-error-2.stderr Update format string tests to explicitly escape multiple newlines 2021-08-11 11:35:08 +02:00
format-string-error.rs
format-string-error.stderr
format-with-yield-point.rs Mac calls 2022-01-30 11:53:12 -08:00
ifmt-bad-arg.rs Update test output 2021-11-15 10:14:33 +01:00
ifmt-bad-arg.stderr Implementation for 65853 2022-04-16 02:26:56 -04:00
ifmt-bad-format-args.rs Move format machinery tests to where they belong 2020-12-04 16:22:36 +03:00
ifmt-bad-format-args.stderr Bless tests 2021-10-15 02:36:58 -05:00
ifmt-unimpl.rs Move format machinery tests to where they belong 2020-12-04 16:22:36 +03:00
ifmt-unimpl.stderr Mention implementers of unsatisfied trait 2022-04-04 21:01:42 +00:00
ifmt-unknown-trait.rs Move format machinery tests to where they belong 2020-12-04 16:22:36 +03:00
ifmt-unknown-trait.stderr Move format machinery tests to where they belong 2020-12-04 16:22:36 +03:00
incorrect-separator.rs Improve recovery on malformed format call 2020-09-02 13:18:19 +02:00
incorrect-separator.stderr Improve recovery on malformed format call 2020-09-02 13:18:19 +02:00
issue-86085.rs Fix span calculation in format strings 2021-06-07 17:42:42 +02:00
issue-86085.stderr Fix span calculation in format strings 2021-06-07 17:42:42 +02:00
issue-89173.rs Improve error message for printf-style format strings 2021-09-29 02:02:45 +02:00
issue-89173.stderr Improve error message for printf-style format strings 2021-09-29 02:02:45 +02:00
issue-91556.rs Fix span calculation on secondary_label as well 2021-12-09 09:09:39 -08:00
issue-91556.stderr Fix span calculation on secondary_label as well 2021-12-09 09:09:39 -08:00
send-sync.rs
send-sync.stderr Use note to point at bound introducing requirement 2021-08-16 17:47:22 +00:00