Commit graph

19 commits

Author SHA1 Message Date
David Tolnay
ba9af4522e
Implement #[error(fmt = ...)] 2024-11-05 17:22:27 -05:00
David Tolnay
65f1990265
Allow error(transparent) inside an enum that has error("...") 2024-11-05 17:02:49 -05:00
David Tolnay
7a72593ee3
Delete Attrs::span in favor of just call_site() 2024-11-05 16:14:45 -05:00
David Tolnay
7e43dec573
Improve error message to distinguish tuple struct vs tuple variant 2024-11-04 20:11:01 -05:00
David Tolnay
d3b926132b
Disable numbered access to positional args on tuples 2024-11-04 20:00:31 -05:00
David Tolnay
9116fdb8ea
Use IdentUnraw consistently when comparing Member 2024-11-04 17:12:08 -05: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
d1efad11a5
Delete unused original DeriveInput from ast 2023-12-15 10:54:28 -08:00
David Tolnay
1e6e267914
Implied bounds for Display and Error impl 2021-09-04 18:21:37 -07:00
David Tolnay
3a49609f78
Inherit span from enum to variants 2020-05-15 16:37:07 -07:00
David Tolnay
3891d985fb
Take a useful span for constructed idents 2020-05-15 16:30:57 -07:00
David Tolnay
4885372ced
Improve span of missing Display impl error 2020-04-11 10:34:26 -07:00
David Tolnay
e38d6bd1a5
Parse transparent attribute 2019-11-30 19:21:59 -08:00
David Tolnay
6b6857ba89
Pass field list into expand_shorthand 2019-11-30 16:25:41 -08:00
David Tolnay
886baece01
Defer expansion of fmt shorthand
This will make it possible to distinguish between our expansion
heuristic for tuple vs struct variants, as well as local fields vs
statics.
2019-11-30 16:25:40 -08:00
David Tolnay
41068e5435
Variants inherit fmt attr from the enum 2019-10-12 13:30:32 -07:00
David Tolnay
d42a95076c
Detect duplicate source attributes 2019-10-12 13:03:43 -07:00
David Tolnay
e3f152983c
Record original syntax tree references for error reporting 2019-10-12 11:17:30 -07:00
David Tolnay
60987ffa76
Introduce syntax tree that makes validations easier 2019-10-12 11:16:54 -07:00