mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 21:39:32 -06:00
19 lines
506 B
Plaintext
19 lines
506 B
Plaintext
concrete TenseX of Tense = open (R = ParamX) in {
|
|
|
|
lincat
|
|
Tense = {s : Str ; t : R.Tense} ;
|
|
Ant = {s : Str ; a : R.Anteriority} ;
|
|
Pol = {s : Str ; p : R.Polarity} ;
|
|
|
|
lin
|
|
PPos = {s = []} ** {p = R.Pos} ;
|
|
PNeg = {s = []} ** {p = R.Neg} ;
|
|
TPres = {s = []} ** {t = R.Pres} ;
|
|
TPast = {s = []} ** {t = R.Past} ;
|
|
TFut = {s = []} ** {t = R.Fut} ;
|
|
TCond = {s = []} ** {t = R.Cond} ;
|
|
ASimul = {s = []} ** {a = R.Simul} ;
|
|
AAnter = {s = []} ** {a = R.Anter} ;
|
|
|
|
}
|