fix(varcon)!: Add Preposition support

This commit is contained in:
Ed Page 2024-08-23 11:33:22 -05:00
parent 40fc92a6fc
commit 6ab147af94
3 changed files with 4 additions and 2 deletions

View file

@ -125,6 +125,7 @@ pub enum Pos {
Adjective = 0x04, Adjective = 0x04,
Adverb = 0x08, Adverb = 0x08,
Interjection = 0x10, Interjection = 0x10,
Preposition = 0x20,
} }
#[cfg(feature = "flags")] #[cfg(feature = "flags")]

View file

@ -1937,6 +1937,7 @@ impl Pos {
"Adj".value(Pos::Adjective), "Adj".value(Pos::Adjective),
"Adv".value(Pos::Adverb), "Adv".value(Pos::Adverb),
"Inj".value(Pos::Interjection), "Inj".value(Pos::Interjection),
"Prep".value(Pos::Preposition),
)) ))
.parse_next(input) .parse_next(input)
}) })

View file

@ -398756,8 +398756,8 @@ Cluster {
], ],
}, },
], ],
pos: None, archaic: false, note: false, pos: Some(Pos::Preposition), archaic: false, note: false,
description: Some("<Prep>"), description: None,
comment: None, comment: None,
}, },
], ],