Rename Stmt.node to Stmt.kind

This commit is contained in:
varkor
2019-09-26 17:34:50 +01:00
parent c3d8791373
commit 21bf983acb
32 changed files with 76 additions and 76 deletions

View File

@@ -131,7 +131,7 @@ fn stmt_let_undescore(cx: &mut ExtCtxt<'_>, sp: Span, expr: P<ast::Expr>) -> ast
});
ast::Stmt {
id: ast::DUMMY_NODE_ID,
node: ast::StmtKind::Local(local),
kind: ast::StmtKind::Local(local),
span: sp,
}
}