(Hun) Stems in N+CN, full infl table in NP.

This commit is contained in:
Inari Listenmaa
2020-04-23 13:36:57 +02:00
parent 15040355e6
commit d7d5f4aa59
8 changed files with 105 additions and 88 deletions

View File

@@ -118,9 +118,14 @@ lin
-- : CN -> Comp ;
CompCN cn = UseCopula ** {
s = \\vf => case vf of {
VPres P3 n => cn.s ! n ! Nom ;
VPres _ n => cn.s ! n ! Nom ++ copula.s ! vf ;
_ => cn.s ! Sg ! Nom ++ copula.s ! vf} ;
VPres P3 n => cn.s ! n ! NomFull
++ cn.compl ! n ! Nom ;
VPres _ n => cn.s ! n ! NomFull
++ cn.compl ! n ! Nom
++ copula.s ! vf ;
_ => cn.s ! Sg ! NomFull
++ cn.compl ! Sg ! Nom
++ copula.s ! vf} ;
} ;
-- : NP -> Comp ;