mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-05-28 01:18:57 -06:00
fix PossNP
This commit is contained in:
@@ -104,9 +104,12 @@ concrete NounMkd of Noun = CatMkd ** open Prelude,ResMkd in {
|
|||||||
lin PartNP cn np = {s = \\s,n => cn.s ! s ! n ++ np.s ! RSubj;
|
lin PartNP cn np = {s = \\s,n => cn.s ! s ! n ++ np.s ! RSubj;
|
||||||
count_form = cn.count_form ++ np.s ! RSubj;
|
count_form = cn.count_form ++ np.s ! RSubj;
|
||||||
vocative = \\n => cn.vocative ! n ++ np.vocative; g = cn.g} ;
|
vocative = \\n => cn.vocative ! n ++ np.vocative; g = cn.g} ;
|
||||||
lin PossNP cn np = {s = \\s,n => cn.s ! s ! n ++ np.s ! RSubj;
|
lin PossNP cn np = {
|
||||||
count_form = cn.count_form ++ np.s ! RSubj;
|
s = \\s,n => cn.s ! s ! n ++ "на" ++ np.s ! RObj Acc;
|
||||||
vocative = \\n => cn.vocative ! n ++ np.vocative; g = cn.g} ;
|
count_form = cn.count_form ++ "на" ++ np.s ! RObj Acc;
|
||||||
|
vocative = \\n => cn.vocative ! n ++ "на" ++ np.s ! RObj Acc;
|
||||||
|
g = cn.g
|
||||||
|
} ;
|
||||||
lin PossPron p = {s = p.poss ! Def Unspecified; sp = Indef} ;
|
lin PossPron p = {s = p.poss ! Def Unspecified; sp = Indef} ;
|
||||||
lin PredetNP p np = {
|
lin PredetNP p np = {
|
||||||
s = \\r => p.s ++ np.s ! r;
|
s = \\r => p.s ++ np.s ! r;
|
||||||
|
|||||||
Reference in New Issue
Block a user