mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-16 22:52:50 -06:00
12 lines
382 B
Plaintext
12 lines
382 B
Plaintext
concrete TenseRon of Tense =
|
|
CatRon [Tense,Temp], TenseX [Ant,Pol,AAnter,ASimul,PNeg,PPos] ** open ResRon in {
|
|
|
|
lin
|
|
TTAnt t a = {s = a.s ++ t.s ; a = a.a ; t = t.t} ;
|
|
TPres = {s = []} ** {t = RPres} ;
|
|
TPast = {s = []} ** {t = RPast} ; --# notpresent
|
|
TFut = {s = []} ** {t = RFut} ; --# notpresent
|
|
TCond = {s = []} ** {t = RCond} ; --# notpresent
|
|
|
|
}
|