1
0
forked from GitHub/gf-rgl

(Som) PossNP: if possessor is a pronoun, use long form of pronoun

This commit is contained in:
Inari Listenmaa
2019-08-14 11:16:22 +02:00
parent 77e42e17ee
commit fa9c3ac4b5

View File

@@ -263,7 +263,9 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in {
--2 Possessive and partitive constructs
-- : PossNP : CN -> NP -> CN ;
PossNP cn np = cn ** {mod = \\n,c => cn.mod ! n ! c ++ np.s ! Abs} ; -- guriga Axmed, not Axmed gurigiisa
PossNP cn np = cn ** { -- guriga Axmed, not Axmed gurigiisa
mod = \\st,n,c => cn.mod ! st ! n ! c ++ objpron np ! Abs
} ;
{-
-- : CN -> NP -> CN ; -- glass of wine / two kilos of red apples
PartNP cn np = cn ** { } ;