Commit graph

82 commits

Author SHA1 Message Date
David Tolnay
2f92680b5f
Access all std types through absolute path 2024-11-05 19:15:15 -05:00
David Tolnay
fa2ba3a531
Perform imports from thiserror through absolute path 2024-11-05 19:06:32 -05:00
David Tolnay
ba9af4522e
Implement #[error(fmt = ...)] 2024-11-05 17:22:27 -05:00
David Tolnay
6cac4c078e
Set span of generated From impls 2024-11-05 00:20:02 -05:00
David Tolnay
e015360076
Rename MemberUnraw::member_span() to just span() 2024-11-04 17:12:08 -05:00
David Tolnay
9116fdb8ea
Use IdentUnraw consistently when comparing Member 2024-11-04 17:12:08 -05:00
oxalica
ae1f47e3e5 Mark #[automatically_derived] for generated impls 2024-09-22 11:24:53 -04:00
David Tolnay
f770921a4f
Resolve assigning_clones clippy lint
warning: assigning the result of `Clone::clone()` may be inefficient
      --> impl/src/ast.rs:85:21
       |
    85 |                     *display = attrs.display.clone();
       |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display.clone_from(&attrs.display)`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
       = note: `#[warn(clippy::assigning_clones)]` on by default

    warning: assigning the result of `Clone::clone()` may be inefficient
       --> impl/src/expand.rs:158:9
        |
    158 |         display_implied_bounds = display.implied_bounds.clone();
        |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display_implied_bounds.clone_from(&display.implied_bounds)`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones

    warning: assigning the result of `Clone::clone()` may be inefficient
       --> impl/src/expand.rs:402:21
        |
    402 |                     display_implied_bounds = display.implied_bounds.clone();
        |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display_implied_bounds.clone_from(&display.implied_bounds)`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
2024-03-07 21:37:48 -08:00
David Tolnay
6b00235610
Leave private traits' name out of scope 2023-12-25 10:26:29 -08:00
David Tolnay
1754825c24
Work around trivial bounds being unstable 2023-12-15 14:13:00 -08:00
David Tolnay
1567f40ec3
Try to remove "doesn't implement Debug" in fallback expansion 2023-12-15 14:12:59 -08:00
David Tolnay
d7e3bdd980
Fix redundant "Error doesn't implement Display" in fallback 2023-12-15 14:12:30 -08:00
David Tolnay
7e5ff62806
Emit an Error impl even in the presence of bad attributes 2023-12-15 14:12:13 -08:00
David Tolnay
ed16526d4d
Delete elaborate spans on path of error trait 2023-12-15 10:52:02 -08:00
David Tolnay
7cec716420
Remove reliance on Spanned for Member 2023-10-19 11:05:01 -07:00
David Tolnay
c9fe739272
Touch up PR 258 2023-10-19 11:05:01 -07:00
Maarten de Vries
a49f7c603d Change span of as_dyn_error() to point compile error at attribute. 2023-10-19 17:09:30 +02:00
David Tolnay
79704adca9
Merge pull request 255 from mina86/a 2023-09-26 16:25:00 -07:00
Michal Nazarewicz
f0f303a7ba Prefer core crate in macro expansions
Prefer using core crate over std in macro expansions wherever a symbol has
a stable equivalent in core.  This makes it easier to eventually support
no_std in the future once error_in_core stabilises.
2023-09-08 00:27:15 +02:00
David Tolnay
7566a29b2a
AsDisplay is no longer an unused import
Prior to PR 251, 2 traits were imported (DisplayAsDisplay, PathAsDisplay),
and in some cases only 1 would be used. Now it's 1 trait and is always
used.
2023-09-02 12:44:45 -07:00
David Tolnay
887c9fb3fc
Touch up PR 251 2023-09-02 12:43:56 -07:00
Michal Nazarewicz
97eeb45b8b Replace DisplayAsDisplay and PathAsDisplay with AsDisplay trait
Rather than having separate traits implementing as_display method,
replace DisplayAsDisplay and PathAsDisplay traits with a AsDisplay
trait.  The difference between those two traits is in the result
returned by the as_display method.  With AsDisplay trait this is
captured by an associated type.

The main motivation for the change is making it simpler to support
no_std builds in the future.  Previously, PathAsDisplay would have to
be handled specially in such builds on the side of macro expansion.
Now, thiserror-impl doesn’t need to be aware of any complications
around AsDisplay since they are all contained in thiserror crate.
2023-09-01 04:59:43 +02:00
David Tolnay
8a95c2583e
Update to nightly's new Error::provide API 2023-08-14 23:15:54 -07:00
David Tolnay
fb8b81f20b
Update to syn 2 2023-03-17 17:49:32 -07:00
David Tolnay
490dc0102b
Eliminate unneeded use of Spanned trait on single tokens 2023-03-13 14:13:41 -07:00
David Tolnay
aaf8449dcb
Use ThiserrorProvide to disambiguate 'provide' method calls 2022-09-13 11:32:06 -07:00
David Tolnay
3bcad5957d
Revert "Directly call source.provide instead of going through dyn error"
This reverts commit f924c251ec.
2022-09-13 11:32:05 -07:00
David Tolnay
f924c251ec
Directly call source.provide instead of going through dyn error 2022-09-04 13:49:39 -07:00
David Tolnay
985da4c7d9
Expose backtrace via generic member access 2022-08-30 19:04:12 -07:00
David Tolnay
c81dc6731b
Make private module more clearly private 2022-08-12 21:53:47 -07:00
David Tolnay
72abba6f04
Deduplicate inferred bounds 2021-09-04 19:52:03 -07:00
David Tolnay
3e699aa43b
Implied bounds for transparent attribute 2021-09-04 19:38:00 -07:00
David Tolnay
1e6e267914
Implied bounds for Display and Error impl 2021-09-04 18:21:37 -07:00
David Tolnay
ec9ac76c52
Revert "Suppress nonstandard_macro_braces in generated code"
This reverts commit 245e7cfd14.
2021-09-04 12:42:56 -07:00
David Tolnay
2a2d1725e7
Support #[from] on an Option field 2021-08-28 15:51:20 -07:00
David Tolnay
799bb53b10
Extract combined backtrace-source case to separate match arm 2021-08-28 13:44:42 -07:00
David Tolnay
d49c5af10f
Handle backtrace coming from Option source field 2021-08-28 13:42:03 -07:00
David Tolnay
2b37b9ed62
Handle enum containing #[source] #[backtrace] field 2021-08-28 13:40:17 -07:00
David Tolnay
9b542cef8f
Adjust how distinct backtrace field is accessed 2021-08-28 13:29:34 -07:00
David Tolnay
ca33ed9bc7
Touch up PR 137 2021-08-28 13:29:34 -07:00
David Tolnay
c45d7e4de8
Merge pull request 137 from astraw/combined-from-and-backtrace-field 2021-08-28 12:56:45 -07:00
David Tolnay
245e7cfd14
Suppress nonstandard_macro_braces in generated code 2021-07-02 21:10:09 -07:00
Andrew Straw
86993c25ab allow #[from] and #[backtrace] on same field
See https://github.com/dtolnay/thiserror/pull/93#pullrequestreview-666213667
2021-06-12 10:47:23 +02:00
David Tolnay
d81b7466bc
Merge pull request 121 from Aaron1011/fix/source-span 2021-02-18 20:15:06 -08:00
Aaron Hill
0fa679b1b8
Consistently use quote! when emitting 'source'
When a macro generates part of the derive input, the call-site hygiene
may be different than the hygiene of a field. Therefore, we need to
be sure to use the same hygiene information for any identifiers we
generate, instead of relying on the hygiene from a particular span
via `quote_spanned!`
2021-02-18 12:40:04 -05:00
David Tolnay
c6dcc694ba
Generalize backtrace capture to From<Backtrace> 2020-10-06 16:49:02 -07:00
David Tolnay
d0ece37338
Suppress unused_qualifications lint 2020-06-15 16:12:16 -07:00
David Tolnay
ecb595b389
Suppress clippy used_underscore_binding pedantic lint 2020-05-21 18:41:17 -07:00
David Tolnay
4885372ced
Improve span of missing Display impl error 2020-04-11 10:34:26 -07:00
David Tolnay
33166f7af4
Allow matches to refer to deprecated variants 2020-03-29 08:42:11 -07:00