forked from GitHub/gf-core
Include adverb in infVP.
infVP, used by for example AdVVP, did not include the new adv field. This caused adverbs to be suppressed when used in infitive clauses, e.g.: Union> l UttS (UseCl TPres ASimul PPos (PredVP (UsePN john_PN)(ComplVV want_VV (AdVVP always_AdV (UseV sleep_V))))) john wants to sleep
This commit is contained in:
@@ -317,7 +317,7 @@ resource ResEng = ParamX ** open Prelude in {
|
||||
|
||||
infVP : Bool -> VP -> Agr -> Str = \isAux,vp,a ->
|
||||
case isAux of {True => [] ; False => "to"} ++
|
||||
vp.inf ++ vp.s2 ! a ;
|
||||
(vp.s!Pres!Simul!CPos!ODir!a).adv ++ vp.inf ++ vp.s2 ! a ;
|
||||
--- if_then_Str isAux [] "to" ++
|
||||
--- vp.inf ++ vp.s2 ! a ;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user