-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 5 pull requests #107636
Rollup of 5 pull requests #107636
Commits on Jan 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a247952 - Browse repository at this point
Copy the full SHA a247952View commit details -
Configuration menu - View commit details
-
Copy full SHA for ba9b196 - Browse repository at this point
Copy the full SHA ba9b196View commit details
Commits on Jan 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 888ca93 - Browse repository at this point
Copy the full SHA 888ca93View commit details
Commits on Jan 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for fa84c6f - Browse repository at this point
Copy the full SHA fa84c6fView commit details
Commits on Feb 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 5fd4f5b - Browse repository at this point
Copy the full SHA 5fd4f5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for de50a86 - Browse repository at this point
Copy the full SHA de50a86View commit details
Commits on Feb 2, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c3a71ed - Browse repository at this point
Copy the full SHA c3a71edView commit details -
Improve doc comment desugaring.
Sometimes the parser needs to desugar a doc comment into `#[doc = r"foo"]`. Currently it does this in a hacky way: by pushing a "fake" new frame (one without a delimiter) onto the `TokenCursor` stack. This commit changes things so that the token stream itself is modified in place. The nice thing about this is that it means `TokenCursorFrame::delim_sp` is now only `None` for the outermost frame.
Configuration menu - View commit details
-
Copy full SHA for af1d16e - Browse repository at this point
Copy the full SHA af1d16eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b23f272 - Browse repository at this point
Copy the full SHA b23f272View commit details -
The motivation here is to eliminate the `Option<(Delimiter, DelimSpan)>`, which is `None` for the outermost token stream and `Some` for all other token streams. We are already treating the innermost frame specially -- this is the `frame` vs `stack` distinction in `TokenCursor`. We can push that further so that `frame` only contains the cursor, and `stack` elements contain the delimiters for their children. When we are in the outermost token stream `stack` is empty, so there are no stored delimiters, which is what we want because the outermost token stream *has* no delimiters. This change also shrinks `TokenCursor`, which shrinks `Parser` and `LazyAttrTokenStreamImpl`, which is nice.
Configuration menu - View commit details
-
Copy full SHA for b5ecbbb - Browse repository at this point
Copy the full SHA b5ecbbbView commit details -
Rename
Cursor
/CursorRef
asTokenTreeCursor
/RefTokenTreeCursor
.This makes it clear they return token trees, and makes for a nice comparison against `TokenCursor` which returns tokens.
Configuration menu - View commit details
-
Copy full SHA for a86fc72 - Browse repository at this point
Copy the full SHA a86fc72View commit details
Commits on Feb 3, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f29000e - Browse repository at this point
Copy the full SHA f29000eView commit details -
Configuration menu - View commit details
-
Copy full SHA for f874f67 - Browse repository at this point
Copy the full SHA f874f67View commit details -
Rollup merge of rust-lang#107082 - dtolnay:autotraits, r=lcnr
Autotrait bounds on dyn-safe trait methods This PR is a successor to rust-lang#106604 implementing the approach encouraged by rust-lang#106604 (comment). **I propose making it legal to use autotraits as trait bounds on the `Self` type of trait methods in a trait object.** rust-lang#51443 (comment) justifies why this use case is particularly important in the context of the async-trait crate. ```rust #![feature(auto_traits)] #![deny(where_clauses_object_safety)] auto trait AutoTrait {} trait MyTrait { fn f(&self) where Self: AutoTrait; } fn main() { let _: &dyn MyTrait; } ``` Previously this would fail with: ```console error: the trait `MyTrait` cannot be made into an object --> src/main.rs:7:8 | 7 | fn f(&self) where Self: AutoTrait; | ^ | = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! = note: for more information, see issue rust-lang#51443 <rust-lang#51443> note: for a trait to be "object safe" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety> --> src/main.rs:7:8 | 6 | trait MyTrait { | ------- this trait cannot be made into an object... 7 | fn f(&self) where Self: AutoTrait; | ^ ...because method `f` references the `Self` type in its `where` clause = help: consider moving `f` to another trait ``` In order for this to be sound without hitting rust-lang#50781, **I further propose that we disallow handwritten autotrait impls that apply to trait objects.** Both of the following were previously allowed (_on nightly_) and no longer allowed in my proposal: ```rust auto trait AutoTrait {} trait MyTrait {} impl AutoTrait for dyn MyTrait {} // NOT ALLOWED impl<T: ?Sized> AutoTrait for T {} // NOT ALLOWED ``` (`impl<T> AutoTrait for T {}` remains allowed.) After this change, traits with a default impl are implemented for a trait object **if and only if** the autotrait is one of the trait object's trait bounds (or a supertrait of a bound). In other words `dyn Trait + AutoTrait` always implements AutoTrait while `dyn Trait` never implements AutoTrait. Fixes dtolnay/async-trait#228. r? `@lcnr`
Configuration menu - View commit details
-
Copy full SHA for 2edb0e9 - Browse repository at this point
Copy the full SHA 2edb0e9View commit details -
Rollup merge of rust-lang#107427 - detrumi:builtin-impl-candidates, r…
…=compiler-errors Add candidates for DiscriminantKind builtin Part of rust-lang#107379
Configuration menu - View commit details
-
Copy full SHA for bd4e1f4 - Browse repository at this point
Copy the full SHA bd4e1f4View commit details -
Rollup merge of rust-lang#107539 - PossiblyAShrub:unused-parens-in-in…
…dex, r=lcnr Emit warnings on unused parens in index expressions Fixes: rust-lang#96606. I am not sure what the best term for "index expression" is. Is there a better term we could use?
Configuration menu - View commit details
-
Copy full SHA for a40fcb3 - Browse repository at this point
Copy the full SHA a40fcb3View commit details -
Rollup merge of rust-lang#107544 - nnethercote:improve-TokenCursor, r…
…=petrochenkov Improve `TokenCursor`. Some small improvements, for things that were bugging me. Best reviewed one commit at a time. r? `@petrochenkov`
Configuration menu - View commit details
-
Copy full SHA for e93059d - Browse repository at this point
Copy the full SHA e93059dView commit details -
Rollup merge of rust-lang#107633 - clubby789:option-string-coerce-fix…
…, r=Nilstrieb Fix suggestion for coercing Option<&String> to Option<&str> Fixes rust-lang#107604 This also makes the diagnostic `MachineApplicable`, and runs `rustfix` to check we're not producing incorrect code. `@rustbot` label +A-diagnostics
Configuration menu - View commit details
-
Copy full SHA for b9f4119 - Browse repository at this point
Copy the full SHA b9f4119View commit details