Commit graph

689 commits

Author SHA1 Message Date
David Tolnay
43844c299b
Move msrv CI to a separate job 2024-11-04 19:53:41 -05:00
David Tolnay
b81fd86301
Merge pull request #353 from dtolnay/inferbound
Only apply inferred bounds if interpolation refers to field
2024-11-04 17:22:21 -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
67faae44b4
Add regression test for issue 345
error[E0599]: `test_no_bound_on_named_fmt::Error<DebugOnly>` doesn't implement `std::fmt::Display`
       --> tests/test_generics.rs:173:22
        |
    168 |     struct Error<T> {
        |     --------------- method `to_string` not found for this struct because it doesn't satisfy `_: Display` or `_: ToString`
    ...
    173 |     assert_eq!(error.to_string(), "...");
        |                      ^^^^^^^^^ `test_no_bound_on_named_fmt::Error<DebugOnly>` cannot be formatted with the default formatter
        |
        = note: the following trait bounds were not satisfied:
                `test_no_bound_on_named_fmt::Error<DebugOnly>: std::fmt::Display`
                which is required by `test_no_bound_on_named_fmt::Error<DebugOnly>: ToString`
        = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
    note: the trait `std::fmt::Display` must be implemented
       --> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/fmt/mod.rs:727:1
        |
    727 | pub trait Display {
        | ^^^^^^^^^^^^^^^^^
        = help: items from traits can only be used if the trait is implemented and in scope
        = note: the following trait defines an item `to_string`, perhaps you need to implement it:
                candidate #1: `ToString`
2024-11-04 17:14:17 -05:00
David Tolnay
66835117eb
Merge pull request #352 from dtolnay/member
Use IdentUnraw consistently when comparing Member
2024-11-04 17:13:59 -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
3d23842d35
Merge pull request #351 from dtolnay/rawbacktrace
Add test of r#Backtrace that is not std::backtrace::Backtrace
2024-11-04 16:41:17 -05:00
David Tolnay
ef191b1048
Merge pull request #350 from dtolnay/rawsource
Add test of r#source that is not Error::source
2024-11-04 16:38:31 -05:00
David Tolnay
9709257b59
Add test of r#Backtrace that is not std::backtrace::Backtrace
Without r#Backtrace:

    error[E0308]: mismatched types
       --> tests/test_backtrace.rs:42:14
        |
    42  |     #[derive(Error, Debug)]
        |              ^^^^^
        |              |
        |              expected `std::backtrace::Backtrace`, found `not_backtrace::Backtrace`
        |              arguments to this method are incorrect
        |
        = note: `not_backtrace::Backtrace` and `std::backtrace::Backtrace` have similar names, but are actually distinct types
    note: `not_backtrace::Backtrace` is defined in the current crate
       --> tests/test_backtrace.rs:26:9
        |
    26  |         pub struct Backtrace;
        |         ^^^^^^^^^^^^^^^^^^^^
    note: `std::backtrace::Backtrace` is defined in crate `std`
       --> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/backtrace.rs:108:1
        |
    108 | pub struct Backtrace {
        | ^^^^^^^^^^^^^^^^^^^^
    note: method defined here
       --> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/error.rs:607:12
        |
    607 |     pub fn provide_ref<T: ?Sized + 'static>(&mut self, value: &'a T) -> &mut Self {
        |            ^^^^^^^^^^^
        = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
2024-11-04 16:36:07 -05:00
David Tolnay
b2df5d55ec
Add test of r#source that is not Error::source
Without r#source:

    error[E0599]: the method `as_dyn_error` exists for type `char`, but its trait bounds were not satisfied
      --> tests/test_source.rs:72:9
       |
    72 |         source: char,
       |         ^^^^^^ method cannot be called on `char` due to unsatisfied trait bounds
       |
       = note: the following trait bounds were not satisfied:
               `char: std::error::Error`
               which is required by `char: AsDynError<'_>`
2024-11-04 16:35:28 -05:00
David Tolnay
2e96c84b37
Merge pull request #349 from dtolnay/unraw
Add a type for representing raw-agnostic format vars
2024-11-04 16:01:26 -05:00
David Tolnay
78d6bd6fca
Add a type for representing raw-agnostic format vars 2024-11-04 15:52:16 -05:00
David Tolnay
2180b52fc1
Merge pull request #348 from dtolnay/takestr
Fix edge case of take_int and take_ident at end of string
2024-11-04 15:33:33 -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
36f43b9fc6
Merge pull request #347 from dtolnay/noraw
Delete support for raw identifiers inside format string
2024-11-04 15:23:36 -05:00
David Tolnay
1142834139
Add ui test of raw identifier in format string 2024-11-04 15:22:04 -05:00
David Tolnay
ef59afe2d4
Delete support for raw identifiers inside format string 2024-11-04 15:20:05 -05:00
David Tolnay
b6e30da98d
Merge pull request #346 from dtolnay/fmttest
Add tests of `_` and `self` variables in format string
2024-11-04 15:17:19 -05:00
David Tolnay
4d397bc186
Add test of underscore variable in format string 2024-11-04 15:15:44 -05:00
David Tolnay
6b48b090f8
Add test of non-rawable keyword in format string 2024-11-04 15:14:31 -05:00
David Tolnay
8d06fb5549
Release 1.0.68 2024-11-04 11:49:43 -05:00
David Tolnay
372fd8a71a
Merge pull request #344 from dtolnay/binop
Disregard equality binop in fallback parser
2024-11-04 11:49:23 -05:00
David Tolnay
08f89925bf
Disregard equality binop in fallback parser 2024-11-04 11:46:01 -05:00
David Tolnay
d2a823d2ae
Merge pull request #343 from dtolnay/unnamed
Add logic to determine whether unnamed fmt arguments are present
2024-11-04 11:44:38 -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
490f9c017b
Merge pull request #342 from dtolnay/synfull
Defer is_syn_full() call until first expression
2024-11-04 11:31:05 -05:00
David Tolnay
7daf1b169d
Defer is_syn_full() call until first expression 2024-11-04 11:29:37 -05:00
David Tolnay
c92ac9940b
Merge pull request #341 from dtolnay/parsescan
Interleave Expr parsing and scanning better
2024-11-04 11:28:22 -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
b3bc3e722d
Merge pull request #340 from dtolnay/fallbackscan
Add infallible expr scanner fallback for scanning invalid code
2024-11-02 21:15:52 -07: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
60bc0f2733
Merge pull request #339 from dtolnay/fullexpr
Use syn's real expression parser if it has full syntax support
2024-11-02 21:04:28 -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
851f6946e2
Merge pull request #337 from dtolnay/scan
More robust scanning for fmt argument expressions
2024-11-02 09:48:32 -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
561e29eb80
Add regression test for issue 335
error[E0277]: `PathBuf` doesn't implement `std::fmt::Display`
       --> tests/test_expr.rs:105:14
        |
    104 |     #[derive(Error, Debug)]
        |              ----- in this derive macro expansion
    105 |     #[error("{A} {b}", b = &0 as &dyn Trait<i32, A = i32>)]
        |              ^^^ `PathBuf` cannot be formatted with the default formatter; call `.display()` on it
        |
        = help: the trait `std::fmt::Display` is not implemented for `PathBuf`
        = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
        = note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
        = note: this error originates in the macro `$crate::format_args` which comes from the expansion of the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
2024-11-02 09:42:15 -07:00
David Tolnay
751dc63a8e
Track caller of the assertion helper in test_expr 2024-11-02 09:41:40 -07:00
David Tolnay
a1882b2a75
Merge pull request #334 from dtolnay/underscorevar
Remove format var parsing workaround that targeted rustc 1.40 and older
2024-10-31 21:25:19 -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
057c15c4e6
Merge pull request #333 from dtolnay/nonegroup
Preserve None-delimited groups inside format args
2024-10-31 21:04:27 -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
e2e9da3f7c
Merge pull request #328 from dtolnay/peekend
Use peek2(End) instead of fork/advance_to
2024-10-31 16:53:48 -07:00