mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-09-19 16:56:05 -06:00
11 lines
449 B
Plaintext
11 lines
449 B
Plaintext
concrete TenseBul of Tense = CatBul [Tense,Temp], TenseX - [Temp,Tense,TTAnt,TPres,TPast,TFut,TCond,IAdv,AdV,SC] ** open ResBul in {
|
|
|
|
lin
|
|
TTAnt t a = {s = a.s ++ t.s ; a = a.a ; t = t.t} ;
|
|
TPres = {s = []} ** {t = VPresent} ;
|
|
TPast = {s = []} ** {t = VPastImperfect Indicative} ; --# notpresent
|
|
TFut = {s = []} ** {t = VFut Indicative} ; --# notpresent
|
|
TCond = {s = []} ** {t = VCond Indicative} ; --# notpresent
|
|
|
|
}
|