extend the names API

This commit is contained in:
Krasimir Angelov
2023-02-07 08:47:34 +01:00
parent a6faaeb351
commit 828bf9c677
33 changed files with 182 additions and 57 deletions
+7
View File
@@ -4,6 +4,7 @@ param
Case = Nom | Gen | Dat | Acc | Loc | Instr;
Number = Sg | Dl | Pl ;
Gender = Masc | Fem | Neut ;
Sex = Male | Female ;
Person = P1 | P2 | P3 ;
Species = Indef | Def ;
Animacy = Animate | Inanimate ;
@@ -180,4 +181,10 @@ oper
Neut => ANeut
} ;
sex2agender : Sex -> AGender = \g ->
case g of {
Male => AMasc Animate ;
Female => AFem
} ;
}