(Pes) Fixes in VV constructions

* Add the conjunction که 'that' in VV
* Fix word order in imperatives formed of VV+complement
This commit is contained in:
Inari Listenmaa
2019-02-07 19:37:17 +01:00
parent 61838b818e
commit a45cc462e3
2 changed files with 11 additions and 6 deletions
+6 -1
View File
@@ -34,6 +34,11 @@ resource ResPes = MorphoPes ** open Prelude,Predef in {
Neg => CNeg b
} ;
cpol2pol : CPolarity -> Polarity = \cp -> case cp of {
CPos => Pos ;
_ => Neg
} ;
-----------------------
--- Verb Phrase
-----------------------
@@ -144,7 +149,7 @@ oper
insertVV : (Agr => Str) -> VPH -> VPH = \obj1,vp -> vp ** {
wish = True ;
vComp = \\a => vp.comp ! a ++ obj1 ! a ;
vComp = \\a => vp.comp ! a ++ conjThat ++ obj1 ! a ;
} ;
insertObj2 : (Str) -> VPH -> VPH = \obj1,vp -> vp ** {