diff options
Diffstat (limited to 'next-lib/src/latin/CatLat.gf')
| -rw-r--r-- | next-lib/src/latin/CatLat.gf | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/next-lib/src/latin/CatLat.gf b/next-lib/src/latin/CatLat.gf new file mode 100644 index 000000000..5b7f32e9a --- /dev/null +++ b/next-lib/src/latin/CatLat.gf @@ -0,0 +1,88 @@ +concrete CatLat of Cat = CommonX ** open ResLat, Prelude in { + + flags optimize=all_subs ; + + lincat + +---- Tensed/Untensed +-- +-- S = {s : Str} ; +-- QS = {s : QForm => Str} ; +-- RS = {s : Agr => Str ; c : Case} ; -- c for it clefts +-- SSlash = {s : Str ; c2 : Str} ; +-- +---- Sentence +-- + Cl = {s : VAnter => VTense => Polarity => Str} ; +-- ClSlash = { +-- s : ResLat.Tense => Anteriority => CPolarity => Order => Str ; +-- c2 : Str +-- } ; +-- Imp = {s : CPolarity => ImpForm => Str} ; +-- +---- Question +-- +-- QCl = {s : ResLat.Tense => Anteriority => CPolarity => QForm => Str} ; +-- IP = {s : Case => Str ; n : Number} ; +-- IComp = {s : Str} ; +-- IDet = {s : Str ; n : Number} ; +-- IQuant = {s : Number => Str} ; +-- +---- Relative +-- +-- RCl = { +-- s : ResLat.Tense => Anteriority => CPolarity => Agr => Str ; +-- c : Case +-- } ; +-- RP = {s : RCase => Str ; a : RAgr} ; +-- +---- Verb +-- + VP = ResLat.VP ; + VPSlash = ResLat.VP ** {c2 : Preposition} ; + Comp = {s : Gender => Number => Case => Str} ; +-- +---- Adjective +-- + AP = Adjective ** {isPre : Bool} ; ---- {s : Agr => Str ; isPre : Bool} ; +-- +---- Noun +-- + CN = {s : Number => Case => Str ; g : Gender} ; + NP, Pron = {s : Case => Str ; g : Gender ; n : Number ; p : Person} ; + Det = Determiner ; +-- Predet, Ord = {s : Str} ; + Num = {s : Gender => Case => Str ; n : Number} ; +-- Card = {s : Str ; n : Number} ; + Quant = Quantifier ; +-- +---- Numeral +-- +-- Numeral = {s : CardOrd => Str ; n : Number} ; +-- Digits = {s : CardOrd => Str ; n : Number ; tail : DTail} ; +-- +---- Structural +-- + Conj = {s1,s2 : Str ; n : Number} ; +-- Subj = {s : Str} ; + Prep = {s : Str ; c : Case} ; +-- +---- Open lexical classes, e.g. Lexicon + + V = Verb ; + V2 = Verb ** {c : Preposition} ; +-- V, VS, VQ, VA = Verb ; -- = {s : VForm => Str} ; +-- V2, V2A, V2Q, V2S = Verb ** {c2 : Str} ; +-- V3 = Verb ** {c2, c3 : Str} ; +-- VV = {s : VVForm => Str ; isAux : Bool} ; +-- V2V = Verb ** {c2 : Str ; isAux : Bool} ; +-- + A = Adjective ** {isPre : Bool} ; +-- A2 = {s : AForm => Str ; c2 : Str} ; +-- + N = Noun ; +-- N2 = {s : Number => Case => Str ; g : Gender} ** {c2 : Str} ; +-- N3 = {s : Number => Case => Str ; g : Gender} ** {c2,c3 : Str} ; + PN = {s : Case => Str ; g : Gender} ; +-- +} |
