mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-28 22:12:51 -06:00
32 lines
854 B
Plaintext
32 lines
854 B
Plaintext
concrete CommonX of Common = open (R = ParamX) in {
|
|
|
|
lincat
|
|
Text, Phr = {s : Str} ;
|
|
Utt = {s : Str} ;
|
|
Voc = {s : Str} ;
|
|
SC = {s : Str} ;
|
|
Adv = {s : Str} ;
|
|
AdV = {s : Str} ;
|
|
AdA = {s : Str} ;
|
|
AdS = {s : Str} ;
|
|
AdN = {s : Str} ;
|
|
IAdv = {s : Str} ;
|
|
CAdv = {s : Str} ;
|
|
PConj = {s : Str} ;
|
|
|
|
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} ; --# notpresent
|
|
TFut = {s = []} ** {t = R.Fut} ; --# notpresent
|
|
TCond = {s = []} ** {t = R.Cond} ; --# notpresent
|
|
ASimul = {s = []} ** {a = R.Simul} ;
|
|
AAnter = {s = []} ** {a = R.Anter} ; --# notpresent
|
|
|
|
}
|