Commit graph

334 commits

Author SHA1 Message Date
David Tolnay
7a72593ee3
Delete Attrs::span in favor of just call_site() 2024-11-05 16:14:45 -05:00
David Tolnay
6cac4c078e
Set span of generated From impls 2024-11-05 00:20:02 -05:00
David Tolnay
7ca67b01f3
Let rustc generate diagnostic for colliding From impls 2024-11-05 00:19:43 -05:00
David Tolnay
b49f647299
Try joining a span for #[source] and #[from] 2024-11-05 00:14:46 -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
6a0eb08569
Recognize infinite recursion caused by {self} 2024-11-04 22:28:23 -05:00
David Tolnay
e44fd92065
Further deconflict macro-generated format var names with user-provided ones 2024-11-04 22:09:13 -05:00
David Tolnay
bf6efce84d
Improve diagnostic on raw identifier in format string 2024-11-04 22:05:19 -05:00
David Tolnay
58cc36e69f
Improve diagnostic on {_} in format string 2024-11-04 22:04:59 -05:00
David Tolnay
4a79e0121e
Rewrite fmt expansion to exactly preserve user-provided args 2024-11-04 22:04:18 -05:00
David Tolnay
f8fd1bf196
Fix collision of numbered field references with user-written named arg 2024-11-04 21:12:25 -05:00
David Tolnay
51ccdf18f5
Slightly cleaner implementation of has_trailing_comma 2024-11-04 20:48:22 -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
3070b8b6c8
Work around rustc pre-1.74's possibly-uninitialized checker
error[E0381]: used binding `ahead` is possibly-uninitialized
       --> impl/src/fmt.rs:187:30
        |
    182 |         let ahead;
        |             ----- binding declared here but left uninitialized
    183 |         if *syn_full.get_or_insert_with(is_syn_full) && {
    184 |             ahead = input.fork();
        |             -----
        |             |
        |             binding initialized here in some conditions
        |             binding initialized here in some conditions
    ...
    187 |             input.advance_to(&ahead);
        |                              ^^^^^^ `ahead` used here but it is possibly-uninitialized
2024-11-04 20:00:51 -05:00
David Tolnay
d3b926132b
Disable numbered access to positional args on tuples 2024-11-04 20:00:31 -05:00
David Tolnay
593317939c
Only apply inferred bounds if interpolation refers to field, not format var 2024-11-04 17:20:18 -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
David Tolnay
78d6bd6fca
Add a type for representing raw-agnostic format vars 2024-11-04 15:52:16 -05:00
David Tolnay
6ddeda270e
Fix edge case of take_int and take_ident at end of string 2024-11-04 15:28:49 -05:00
David Tolnay
3814afebf4
Stick to only string manipulation in take_ident 2024-11-04 15:25:27 -05:00
David Tolnay
ef59afe2d4
Delete support for raw identifiers inside format string 2024-11-04 15:20:05 -05:00
David Tolnay
8d06fb5549
Release 1.0.68 2024-11-04 11:49:43 -05:00
David Tolnay
08f89925bf
Disregard equality binop in fallback parser 2024-11-04 11:46:01 -05:00
David Tolnay
b3bf7a6f69
Add logic to determine whether unnamed fmt arguments are present 2024-11-04 11:34:52 -05:00
David Tolnay
7daf1b169d
Defer is_syn_full() call until first expression 2024-11-04 11:29:37 -05:00
David Tolnay
40a53f7f33
Interleave Expr parsing and scanning better 2024-11-04 11:21:12 -05:00
David Tolnay
925f2dde77
Release 1.0.67 2024-11-03 10:17:51 -05:00
David Tolnay
0ab908aab0
Ignore expected unnecessary_wraps pedantic clippy lint
warning: this function's return value is unnecessarily wrapped by `Result`
       --> impl/src/fmt.rs:122:1
        |
    122 | / fn explicit_named_args(input: ParseStream) -> Result<Set<Ident>> {
    123 | |     let ahead = input.fork();
    124 | |     if let Ok(set) = try_explicit_named_args(&ahead) {
    125 | |         input.advance_to(&ahead);
    ...   |
    136 | |     Ok(Set::new())
    137 | | }
        | |_^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_wraps
        = note: `-W clippy::unnecessary-wraps` implied by `-W clippy::pedantic`
        = help: to override `-W clippy::pedantic` add `#[allow(clippy::unnecessary_wraps)]`
    help: remove `Result` from the return type...
        |
    122 | fn explicit_named_args(input: ParseStream) -> std::collections::BTreeSet<proc_macro2::Ident> {
        |                                               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    help: ...and then change returning expressions
        |
    126 ~         return set;
    127 |     }
    ...
    131 |         input.advance_to(&ahead);
    132 ~         return set;
    133 |     }
    134 |
    135 |     input.parse::<TokenStream>().unwrap();
    136 ~     Set::new()
        |
2024-11-02 21:12:30 -07:00
David Tolnay
c357f9728e
Add infallible expr scanner fallback for scanning invalid code 2024-11-02 21:11:32 -07:00
David Tolnay
dabb96fdaf
Use syn's real expression parser if it has full syntax support 2024-11-02 20:46:25 -07:00
Yotam Ofek
144b3b690b
Remove #[allow] for fixed clippy bug 2024-11-02 20:03:53 -07:00
David Tolnay
45e18f53df
Ignore enum_glob_use pedantic clippy lint
warning: usage of wildcard import for enum variants
     --> impl/src/scan_expr.rs:1:12
      |
    1 | use self::{Action::*, Input::*};
      |            ^^^^^^^^^ help: try: `Action::{DecDepth, Finish, IncDepth, SetState}`
      |
      = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#enum_glob_use
      = note: `-W clippy::enum-glob-use` implied by `-W clippy::pedantic`
      = help: to override `-W clippy::pedantic` add `#[allow(clippy::enum_glob_use)]`

    warning: usage of wildcard import for enum variants
     --> impl/src/scan_expr.rs:1:23
      |
    1 | use self::{Action::*, Input::*};
      |                       ^^^^^^^^ help: try: `Input::{CanBeginExpr, ConsumeAny, ConsumeBinOp, ConsumeBrace, ConsumeDelimiter, ConsumeIdent, ConsumeLifetime, ConsumeLiteral, ConsumeNestedBrace, Empty, ExpectPath, ExpectTurbofish, ExpectType, Keyword, Otherwise, Punct}`
      |
      = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#enum_glob_use
2024-11-02 09:45:27 -07:00
David Tolnay
2585669fa1
More robust scanning for fmt argument expressions 2024-11-02 09:42:34 -07:00
David Tolnay
c0050558f7
Import expr scanner from syn 2.0.87 2024-11-02 09:42:33 -07:00
David Tolnay
747ce20cc2
Remove format var parsing workaround that targeted rustc 1.40 and older 2024-10-31 21:23:45 -07:00
David Tolnay
2b16098823
Preserve None-delimited groups inside format args 2024-10-31 21:02:21 -07:00
David Tolnay
d1a8254ee5
Release 1.0.66 2024-10-31 16:54:13 -07:00
David Tolnay
3d79a908ac
Use peek2(End) instead of fork/advance_to 2024-10-31 16:51:50 -07:00
David Tolnay
0e2bef9ff1
Raise required compiler to rust 1.61 2024-10-31 16:42:50 -07:00
David Tolnay
5d3edf9d7e
Improve error on malformed format attribute 2024-10-31 14:25:18 -07:00
David Tolnay
5088592a4e
Release 1.0.65 2024-10-22 10:50:31 -07:00
David Tolnay
84484bc75c
Release 1.0.64 2024-09-22 10:53:10 -07:00
oxalica
ae1f47e3e5 Mark #[automatically_derived] for generated impls 2024-09-22 11:24:53 -04:00
David Tolnay
915c75e8a3
Release 1.0.63 2024-07-17 12:09:02 -07:00
David Tolnay
0bf6e3dd78
Release 1.0.62 2024-07-11 16:31:35 -07:00
David Tolnay
40a7779b17
Support .0.0 nested tuple index 2024-07-11 16:27:20 -07:00
David Tolnay
5c8016393f
Release 1.0.61 2024-05-17 09:44:33 -07:00
David Tolnay
870d11b830
Release 1.0.60 2024-05-06 19:13:41 -07:00