inversions with intervening -t- for Fre, e.g. fera-t-il, parle-t-elle

This commit is contained in:
aarne
2013-02-21 08:40:57 +00:00
parent 5cb47b863d
commit f92e245c0a
10 changed files with 460 additions and 440 deletions

View File

@@ -59,7 +59,7 @@ interface DiffRomance = open CommonRomance, Prelude in {
oper dative : Case ;
oper genitive : Case ;
vRefl : VType ;
vRefl : VType -> VType ;
isVRefl : VType -> Bool ;
@@ -140,6 +140,12 @@ oper
oper infForm : Number -> Person -> CAgr -> CAgr -> Bool ;
-- AR 21/2/2013
-- inverted clause order, only deviant in Fre where also the intervening -t- has to be taken to account
invertedClause :
VType -> (RTense * Anteriority * Number * Person) -> Bool -> (Str * Str) -> (clit,fin,inf,compl,subj,ext : Str) -> Str =
\_,_,_,neg,clit,fin,inf,compl,subj,ext -> neg.p1 ++ clit ++ fin ++ neg.p2 ++ inf ++ compl ++ subj ++ ext ;
}