mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-05-28 01:18:57 -06:00
Conjunction with and_Conj should always be in plural
This commit is contained in:
@@ -169,8 +169,10 @@ concrete ConjunctionRus of Conjunction =
|
|||||||
-- : Conj -> ListNP -> NP ; -- she or we
|
-- : Conj -> ListNP -> NP ; -- she or we
|
||||||
ConjNP conj xs = {
|
ConjNP conj xs = {
|
||||||
s = \\c => conj.s1 ++ xs.s1 ! c ++ conj.s2 ++ xs.s2 ! c ;
|
s = \\c => conj.s1 ++ xs.s1 ! c ++ conj.s2 ++ xs.s2 ! c ;
|
||||||
--prep = \\c => conj.s1 ++ xs.prep1 ! c ++ conj.s2 ++ xs.prep2 ! c ;
|
a = case conj.n of {
|
||||||
a = xs.a ; -- TODO: dep. on conj as well?
|
Sg => xs.a ;
|
||||||
|
Pl => case xs.a of {Ag gn p => Ag GPl p}
|
||||||
|
} ;
|
||||||
pron = xs.pron ;
|
pron = xs.pron ;
|
||||||
anim = xs.anim
|
anim = xs.anim
|
||||||
} ;
|
} ;
|
||||||
|
|||||||
Reference in New Issue
Block a user