rename struct -> record, pos -> tuple

This commit is contained in:
Aleksey Kladov 2019-08-23 15:55:21 +03:00
parent c12dce0073
commit 5b18a4eef9
78 changed files with 640 additions and 634 deletions

View file

@ -318,8 +318,8 @@ pub struct StructField {
#[derive(Debug)]
pub enum FieldSource {
Named(ast::NamedFieldDef),
Pos(ast::PosFieldDef),
Named(ast::RecordFieldDef),
Pos(ast::TupleFieldDef),
}
impl StructField {