Commit graph

28 commits

Author SHA1 Message Date
Carl Sverre
5195f7ccfa Implement #[implicit] to automatically generate fields using the new ImplicitField trait 2024-12-19 11:40:24 -08:00
David Tolnay
ba9af4522e
Implement #[error(fmt = ...)] 2024-11-05 17:22:27 -05:00
David Tolnay
7ca67b01f3
Let rustc generate diagnostic for colliding From impls 2024-11-05 00:19:43 -05:00
David Tolnay
5ffcf461e7
Store span of #[source] and #[from] attribute 2024-11-05 00:10:35 -05:00
David Tolnay
9d7602e226
Remove same_member in favor of MemberUnraw's PartialEq impl 2024-11-04 23:31:14 -05:00
David Tolnay
9116fdb8ea
Use IdentUnraw consistently when comparing Member 2024-11-04 17:12:08 -05:00
David Tolnay
c4d7c2b135
Fix miscounting fields when from and backtrace are same field 2021-12-18 11:41:17 -08:00
David Tolnay
a37b5ab11f
Resolve needless_borrow clippy lints
error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
      --> impl/src/prop.rs:68:25
       |
    68 |             return Some(&field);
       |                         ^^^^^^ help: change this to: `field`
       |
       = note: `-D clippy::needless-borrow` implied by `-D clippy::all`
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

    error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
      --> impl/src/prop.rs:77:25
       |
    77 |             return Some(&field);
       |                         ^^^^^^ help: change this to: `field`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

    error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
      --> impl/src/prop.rs:82:70
       |
    82 |             Member::Named(ident) if ident == "source" => return Some(&field),
       |                                                                      ^^^^^^ help: change this to: `field`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

    error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
      --> impl/src/prop.rs:92:25
       |
    92 |             return Some(&field);
       |                         ^^^^^^ help: change this to: `field`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

    error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
      --> impl/src/prop.rs:97:25
       |
    97 |             return Some(&field);
       |                         ^^^^^^ help: change this to: `field`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

    error: this expression borrows a reference (`&syn::Type`) that is immediately dereferenced by the compiler
       --> impl/src/valid.rs:191:41
        |
    191 |         if contains_non_static_lifetime(&source_field.ty) {
        |                                         ^^^^^^^^^^^^^^^^ help: change this to: `source_field.ty`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
2021-06-04 19:49:18 -07:00
David Tolnay
dc3c5c6a87
Resolve clippy filter_map_next pedantic lint 2020-12-29 16:24:38 -08:00
David Tolnay
0859205018
Detect non-static lifetime behind reference type parameter 2020-12-26 17:29:46 -08:00
David Tolnay
d31d96bba2
Add justification to non-static lifetime diagnostic 2020-12-26 17:27:02 -08:00
David Tolnay
464a409608
Tweak placement of diagnostic on non-static lifetimes in source 2020-12-26 17:25:34 -08:00
David Tolnay
3891d985fb
Take a useful span for constructed idents 2020-05-15 16:30:57 -07:00
David Tolnay
85b0944eac
Reject transparent attr in field attribute position 2020-04-27 15:48:44 -07:00
David Tolnay
a1ae05c954
Add error message for non-static source 2020-03-20 22:39:18 -07:00
David Tolnay
c3da1630d3
Expand transparent attribute 2019-11-30 21:59:26 -08:00
David Tolnay
7672b1eccd
Validate transparent attribute 2019-11-30 21:49:46 -08:00
David Tolnay
46de723f20
Support backtrace in From impl 2019-10-12 18:08:20 -07:00
David Tolnay
0e8d1baa69
Detect extraneous fields before generating From 2019-10-12 17:55:29 -07:00
David Tolnay
2492735b67
Detect multiple variants having same From type 2019-10-12 17:55:29 -07:00
David Tolnay
2305f75976
Validate #[from] attribute 2019-10-12 17:55:29 -07:00
David Tolnay
0c5e34fb12
Rename attr validation methods 2019-10-12 17:27:40 -07:00
David Tolnay
f16952290d
Simplify storage of source and backtrace attrs 2019-10-12 16:28:24 -07:00
David Tolnay
72cf49ccd4
#[backtrace] attribute for explicitly selecting the backtrace field 2019-10-12 15:02:11 -07:00
David Tolnay
aa123cfe0c
Reject display attribute on a field 2019-10-12 13:45:26 -07:00
David Tolnay
10d1f640da
Reject source attribute not on a field 2019-10-12 13:42:11 -07:00
David Tolnay
d42a95076c
Detect duplicate source attributes 2019-10-12 13:03:43 -07:00
David Tolnay
1764ddeae4
Perform all validation up front 2019-10-12 11:41:36 -07:00