rust/compiler/rustc_middle/src/traits
Aaron Hill db0324ebb2
Support HIR wf checking for function signatures
During function type-checking, we normalize any associated types in
the function signature (argument types + return type), and then
create WF obligations for each of the normalized types. The HIR wf code
does not currently support this case, so any errors that we get have
imprecise spans.

This commit extends `ObligationCauseCode::WellFormed` to support
recording a function parameter, allowing us to get the corresponding
HIR type if an error occurs. Function typechecking is modified to
pass this information during signature normalization and WF checking.
The resulting code is fairly verbose, due to the fact that we can
no longer normalize the entire signature with a single function call.

As part of the refactoring, we now perform HIR-based WF checking
for several other 'typed items' (statics, consts, and inherent impls).

As a result, WF and projection errors in a function signature now
have a precise span, which points directly at the responsible type.
If a function signature is constructed via a macro, this will allow
the error message to point at the code 'most responsible' for the error
(e.g. a user-supplied macro argument).
2021-07-20 10:58:14 -05:00
..
chalk.rs Update Chalk 2021-02-02 12:37:22 -05:00
mod.rs Support HIR wf checking for function signatures 2021-07-20 10:58:14 -05:00
query.rs Fix outdated crate names in compiler docs 2021-04-08 11:12:14 -05:00
select.rs Add ptr::Pointee trait (for all types) and ptr::metadata function 2021-02-15 14:27:12 +01:00
specialization_graph.rs Enforce that query results implement Debug 2021-01-16 17:53:02 -05:00
structural_impls.rs Add ptr::Pointee trait (for all types) and ptr::metadata function 2021-02-15 14:27:12 +01:00