-
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
Rolling up PRs in the queue #15864
Merged
Merged
Rolling up PRs in the queue #15864
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We now build the game at the end of the first section. I wanted to do it as we went along, but it's too hard with these fundamentals not in place. The rest will do the 'as we go' approach, but I think this is better.
In f1ad425, I changed the handling of macros, to prevent macro invocations from occurring in fully expanded source. Instead, I added a side table. It contained only the spans of the macros, because this was the only information required in order to make macro export work. However, librustdoc was also affected by this change, since it extracts macro information in a similar way. As a result of the earlier change, exported macros were no longer documented. In order to repair this, I've adjusted the side table to contain whole items, rather than just the spans.
The long hash just takes up space and you can discover the main hash through the `rustc --version verbose` command.
It's harder to run rustc correctly without it.
Helpful for users of rustc as a library.
This provides a way for clients of the rustc library to add their own features to the pipeline.
This adds the alt_std_name field to the Session's Options type. I'm using this in an external tool to control which libraries a crate links to.
This adds an `--extern` flag to `rustdoc` much like the compiler's to specify the path where a given crate can be found.
So all comes in the order union, intersection, difference and symmetric_difference.
Emit a single rt::Piece per consecutive string literals. String literals are split on {{ or }} escapes. Saves a small amount of static storage and emitted code size.
Closes rust-lang#15796. [breaking-change]
We now build up a set of modules that reexport everything the test framework needs, instead of turning off privacy.
Closes rust-lang#15690 (Guide: improve error handling) Closes rust-lang#15729 (Guide: guessing game) Closes rust-lang#15751 (repair macro docs) Closes rust-lang#15766 (rustc: Print a smaller hash on -v) Closes rust-lang#15815 (Add unit test for rlibc) Closes rust-lang#15820 (Minor refactoring and features in rustc driver for embedders) Closes rust-lang#15822 (rustdoc: Add an --extern flag analagous to rustc's) Closes rust-lang#15824 (Document Deque trait and bitv.) Closes rust-lang#15832 (syntax: Join consecutive string literals in format strings together) Closes rust-lang#15837 (Update LLVM to include NullCheckElimination pass) Closes rust-lang#15841 (Rename to_str to to_string) Closes rust-lang#15847 (Purge #[!resolve_unexported] from the compiler) Closes rust-lang#15848 (privacy: Add publically-reexported foreign item to exported item set) Closes rust-lang#15849 (fix string in from_utf8_lossy_100_multibyte benchmark) Closes rust-lang#15850 (Get rid of few warnings in tests) Closes rust-lang#15852 (Clarify the std::vec::Vec::with_capacity docs)
bors
added a commit
that referenced
this pull request
Jul 21, 2014
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Nov 16, 2023
fix: find `Self` reference took a lot of time to debug to find the problem, here should compare the actual `Adt` type close rust-lang/rust-analyzer#12693
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.