Skip to content

Commit 20928e0

Browse files
authored
Rollup merge of #82321 - bugadani:ast3, r=varkor
AST: Remove some unnecessary boxes
2 parents 05ed081 + 10f2342 commit 20928e0

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

compiler/rustc_ast/src/ast.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2695,7 +2695,7 @@ pub enum ItemKind {
26952695
/// A use declaration item (`use`).
26962696
///
26972697
/// E.g., `use foo;`, `use foo::bar;` or `use foo::bar as FooBar;`.
2698-
Use(P<UseTree>),
2698+
Use(UseTree),
26992699
/// A static item (`static`).
27002700
///
27012701
/// E.g., `static FOO: i32 = 42;` or `static FOO: &'static str = "bar";`.
@@ -2719,7 +2719,7 @@ pub enum ItemKind {
27192719
/// E.g., `extern {}` or `extern "C" {}`.
27202720
ForeignMod(ForeignMod),
27212721
/// Module-level inline assembly (from `global_asm!()`).
2722-
GlobalAsm(P<GlobalAsm>),
2722+
GlobalAsm(GlobalAsm),
27232723
/// A type alias (`type`).
27242724
///
27252725
/// E.g., `type Foo = Bar<u8>;`.

compiler/rustc_builtin_macros/src/global_asm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub fn expand_global_asm<'cx>(
2828
ident: Ident::invalid(),
2929
attrs: Vec::new(),
3030
id: ast::DUMMY_NODE_ID,
31-
kind: ast::ItemKind::GlobalAsm(P(global_asm)),
31+
kind: ast::ItemKind::GlobalAsm(global_asm),
3232
vis: ast::Visibility {
3333
span: sp.shrink_to_lo(),
3434
kind: ast::VisibilityKind::Inherited,

compiler/rustc_builtin_macros/src/standard_library_imports.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use rustc_ast as ast;
2-
use rustc_ast::ptr::P;
32
use rustc_expand::base::{ExtCtxt, ResolverExpand};
43
use rustc_expand::expand::ExpansionConfig;
54
use rustc_session::Session;
@@ -72,11 +71,11 @@ pub fn inject(
7271
span,
7372
Ident::invalid(),
7473
vec![cx.attribute(cx.meta_word(span, sym::prelude_import))],
75-
ast::ItemKind::Use(P(ast::UseTree {
74+
ast::ItemKind::Use(ast::UseTree {
7675
prefix: cx.path(span, import_path),
7776
kind: ast::UseTreeKind::Glob,
7877
span,
79-
})),
78+
}),
8079
);
8180

8281
krate.items.insert(0, use_item);

compiler/rustc_parse/src/parser/item.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ impl<'a> Parser<'a> {
225225
return Err(e);
226226
}
227227

228-
(Ident::invalid(), ItemKind::Use(P(tree)))
228+
(Ident::invalid(), ItemKind::Use(tree))
229229
} else if self.check_fn_front_matter() {
230230
// FUNCTION ITEM
231231
let (ident, sig, generics, body) = self.parse_fn(attrs, req_name, lo)?;

0 commit comments

Comments
 (0)