1
0
forked from GitHub/gf-rgl

Merge pull request #236 from inariksit/persian

(Pes) Generalise infVP to other non-finite verb forms
This commit is contained in:
Inari Listenmaa
2019-05-06 17:29:05 +02:00
committed by GitHub

View File

@@ -112,7 +112,10 @@ oper
} ;
showVPHwithImpPrefix = showVPH' OV True VVPres ;
infVP : VPH -> Str = showVPH' VO False VVPres Inf defaultAgr ;
infVP = overload {
infVP : VPH -> Str = showVPH' VO False VVPres Inf defaultAgr ; -- word order VO, VerbForm infinitive
infVP : VerbForm -> VPH -> Str = \vf,vp -> showVPH' VO False VVPres vf defaultAgr vp -- VO as word order, but VerbForm can be any (e.g. present participle or perfect stem)
} ;
showVPH' : WordOrder -> Bool -> VVTense -> VerbForm -> Agr -> VPH -> Str =
\wo,showImpPref,ant,vf,agr,vp ->