use recrod terminology for hir::Pat

This commit is contained in:
Aleksey Kladov 2019-09-03 08:59:09 +03:00
parent db69d134fb
commit 48ffbf29b7
3 changed files with 7 additions and 8 deletions

View file

@ -20,9 +20,8 @@ use crate::{
};
use super::{
ArithOp, Array, BinaryOp, BindingAnnotation, Body, BodySourceMap, CmpOp, Expr, ExprId,
Literal, LogicOp, MatchArm, Ordering, Pat, PatId, PatPtr, RecordFieldPat, RecordLitField,
Statement,
ArithOp, Array, BinaryOp, BindingAnnotation, Body, BodySourceMap, CmpOp, Expr, ExprId, Literal,
LogicOp, MatchArm, Ordering, Pat, PatId, PatPtr, RecordFieldPat, RecordLitField, Statement,
};
pub(crate) struct ExprCollector<DB> {
@ -504,7 +503,7 @@ where
});
fields.extend(iter);
Pat::Struct { path, args: fields }
Pat::Record { path, args: fields }
}
// FIXME: implement