Don't use an allocation for ItemId in StmtKind
This commit is contained in:
parent
eac09088e1
commit
cdd1c0efbb
@ -951,7 +951,7 @@ pub fn walk_stmt<'v, V: Visitor<'v>>(visitor: &mut V, statement: &'v Stmt) {
|
||||
visitor.visit_id(statement.id);
|
||||
match statement.node {
|
||||
StmtKind::Local(ref local) => visitor.visit_local(local),
|
||||
StmtKind::Item(ref item) => visitor.visit_nested_item(**item),
|
||||
StmtKind::Item(item) => visitor.visit_nested_item(item),
|
||||
StmtKind::Expr(ref expression) |
|
||||
StmtKind::Semi(ref expression) => {
|
||||
visitor.visit_expr(expression)
|
||||
|
@ -4663,7 +4663,7 @@ impl<'a> LoweringContext<'a> {
|
||||
hir::Stmt {
|
||||
id: node_id,
|
||||
hir_id,
|
||||
node: hir::StmtKind::Item(P(item_id)),
|
||||
node: hir::StmtKind::Item(item_id),
|
||||
span: s.span,
|
||||
}
|
||||
})
|
||||
@ -4693,7 +4693,7 @@ impl<'a> LoweringContext<'a> {
|
||||
hir::Stmt {
|
||||
id: node_id,
|
||||
hir_id,
|
||||
node: hir::StmtKind::Item(P(item_id)),
|
||||
node: hir::StmtKind::Item(item_id),
|
||||
span: s.span,
|
||||
}
|
||||
})
|
||||
|
@ -1159,8 +1159,9 @@ impl fmt::Debug for Stmt {
|
||||
pub enum StmtKind {
|
||||
/// A local (`let`) binding.
|
||||
Local(P<Local>),
|
||||
|
||||
/// An item binding.
|
||||
Item(P<ItemId>),
|
||||
Item(ItemId),
|
||||
|
||||
/// An expression without a trailing semi-colon (must have unit type).
|
||||
Expr(P<Expr>),
|
||||
|
@ -1007,8 +1007,8 @@ impl<'a> State<'a> {
|
||||
}
|
||||
self.end()?
|
||||
}
|
||||
hir::StmtKind::Item(ref item) => {
|
||||
self.ann.nested(self, Nested::Item(**item))?
|
||||
hir::StmtKind::Item(item) => {
|
||||
self.ann.nested(self, Nested::Item(item))?
|
||||
}
|
||||
hir::StmtKind::Expr(ref expr) => {
|
||||
self.space_if_not_bol()?;
|
||||
|
Loading…
x
Reference in New Issue
Block a user