mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
Clarify in type logging when we have a constraint vs. a resolved type.
This commit is contained in:
parent
fb7e37842b
commit
fdafec39de
@ -106,12 +106,16 @@ let rec tyspec_to_str (ts:tyspec) : string =
|
||||
fmt_tyspec ff (!tv)
|
||||
|
||||
| TYSPEC_box tv ->
|
||||
fmt ff "@@";
|
||||
fmt_tyspec ff (!tv)
|
||||
fmt_obr ff;
|
||||
fmt ff "box ";
|
||||
fmt_tyspec ff (!tv);
|
||||
fmt_cbr ff;
|
||||
|
||||
| TYSPEC_mutable tv ->
|
||||
fmt ff "mutable ";
|
||||
fmt_tyspec ff (!tv)
|
||||
fmt_obr ff;
|
||||
fmt ff "mut ";
|
||||
fmt_tyspec ff (!tv);
|
||||
fmt_cbr ff
|
||||
|
||||
| TYSPEC_callable (out, ins) ->
|
||||
fmt_obb ff;
|
||||
@ -128,9 +132,11 @@ let rec tyspec_to_str (ts:tyspec) : string =
|
||||
fmt_cbb ff;
|
||||
|
||||
| TYSPEC_tuple tvs ->
|
||||
fmt_obr ff;
|
||||
fmt ff "tuple (";
|
||||
fmt_tvs ff tvs;
|
||||
fmt ff ")";
|
||||
fmt_cbr ff;
|
||||
|
||||
| TYSPEC_vector tv ->
|
||||
fmt_obb ff;
|
||||
|
Loading…
Reference in New Issue
Block a user