rename POS_FIELD -> POS_FIELD_DEF

to match NAMED_FIELD_DEF
This commit is contained in:
Aleksey Kladov 2019-01-26 00:24:12 +03:00
parent 3c7acecade
commit 23172a116c
15 changed files with 65 additions and 65 deletions

View file

@ -193,7 +193,7 @@ pub struct StructField {
#[derive(Debug)]
pub enum FieldSource {
Named(TreeArc<ast::NamedFieldDef>),
Pos(TreeArc<ast::PosField>),
Pos(TreeArc<ast::PosFieldDef>),
}
impl StructField {