Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
825a3b1
String.truncate calls Vec.truncate, in turn, and that states
deep-outcome Apr 27, 2024
f840da7
WS fix.
deep-outcome Apr 27, 2024
42ecde4
run-make-support: preserve tooks.mk behavior for EXTRACXXFLAGS
jieyouxu May 1, 2024
9af3b1e
library/std: Remove unused `gimli-symbolize` feature
Enselic May 2, 2024
ff2ff97
variable-precision float operations behave non-deterministically
RalfJung May 2, 2024
3722eb0
Tweak `consts_may_unify`.
nnethercote May 2, 2024
aabb90d
rustc_expand: clean up attributes.
nnethercote Apr 28, 2024
d817856
Remove an unnecessary re-export of `rustc_span::hygiene`.
nnethercote Apr 29, 2024
7c6d363
Remove an unnecessary `#[macro_use]`.
nnethercote Apr 29, 2024
3f05589
Remove unused `ExpCtxt` methods.
nnethercote Apr 30, 2024
189a8a6
De-`pub` some `rustc_expand` modules.
nnethercote Apr 30, 2024
e809df6
Remove unnecessary re-export of `MacroKind`.
nnethercote Apr 30, 2024
d7f5319
Inline and remove three `DummyResult` methods.
nnethercote Apr 30, 2024
c9c964f
Fix some comment formatting.
nnethercote Apr 30, 2024
79c4d02
Remove unnecessary `pub`s.
nnethercote Apr 30, 2024
3b69781
Tweak `fully_expand_fragment` loop.
nnethercote May 1, 2024
1c15b6a
Replace a hard-to-read line.
nnethercote May 1, 2024
ae7e328
Introduce `Invocation::span_mut`.
nnethercote May 1, 2024
5ac017e
Type annotate `repeats`.
nnethercote May 2, 2024
3a3a15d
Refactor `Frame`.
nnethercote May 2, 2024
3a3df3e
AST pretty: Use `builtin_syntax` for type ascription
fmease May 2, 2024
b38a8a4
Rollup merge of #124441 - bravequickcleverfibreyarn:string.rs, r=Amanieu
fmease May 3, 2024
521a172
Rollup merge of #124594 - jieyouxu:rmake-cc, r=fmease
fmease May 3, 2024
ccb9cc7
Rollup merge of #124604 - Enselic:std-gimli-symbolize, r=workingjubilee
fmease May 3, 2024
4ae3407
Rollup merge of #124607 - nnethercote:rustc_expand-cleanups, r=compil…
fmease May 3, 2024
52055c6
Rollup merge of #124609 - RalfJung:float-precision, r=cuviper
fmease May 3, 2024
e1a172e
Rollup merge of #124610 - nnethercote:typenum, r=lcnr
fmease May 3, 2024
b8a9e20
Rollup merge of #124637 - fmease:ast-pretty-ty-asc-builtin-syn, r=com…
fmease May 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove an unnecessary re-export of rustc_span::hygiene.
  • Loading branch information
nnethercote committed May 2, 2024
commit d8178569784a78f6e52eeb281c106de801bb398a
2 changes: 1 addition & 1 deletion compiler/rustc_expand/src/expand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use crate::errors::{
IncompleteParse, RecursionLimitReached, RemoveExprNotSupported, RemoveNodeNotSupported,
UnsupportedKeyValue, WrongFragmentKind,
};
use crate::hygiene::SyntaxContext;
use crate::mbe::diagnostics::annotate_err_with_kind;
use crate::module::{mod_dir_path, parse_external_mod, DirOwnership, ParsedExternalMod};
use crate::placeholders::{placeholder, PlaceholderExpander};
Expand Down Expand Up @@ -32,6 +31,7 @@ use rustc_session::lint::builtin::{UNUSED_ATTRIBUTES, UNUSED_DOC_COMMENTS};
use rustc_session::lint::BuiltinLintDiag;
use rustc_session::parse::feature_err;
use rustc_session::{Limit, Session};
use rustc_span::hygiene::SyntaxContext;
use rustc_span::symbol::{sym, Ident};
use rustc_span::{ErrorGuaranteed, FileName, LocalExpnId, Span};

Expand Down
1 change: 0 additions & 1 deletion compiler/rustc_expand/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ mod placeholders;
mod proc_macro_server;

pub use mbe::macro_rules::compile_declarative_macro;
pub(crate) use rustc_span::hygiene;
pub mod base;
pub mod build;
#[macro_use]
Expand Down