forked from GitHub/gf-rgl
26 lines
664 B
Plaintext
26 lines
664 B
Plaintext
concrete CatMkd of Cat = open ResMkd in {
|
|
|
|
lincat N = Noun ;
|
|
lincat N2 = Noun ** {c2 : Compl} ;
|
|
lincat N3 = Noun ** {c2,c3 : Compl} ;
|
|
lincat V, VA, VV, VS, VQ = Verb ;
|
|
lincat V2, V2S, V2Q = Verb ** {c2 : Compl} ;
|
|
lincat V3, V2A, V2V = Verb ** {c2,c3 : Compl} ;
|
|
lincat A = Adj ;
|
|
lincat A2 = Adj ** {c2 : Compl} ;
|
|
lincat Adv, AdV, AdA, AdN = Adv ;
|
|
lincat Pron = Pron ;
|
|
lincat Prep = Compl ;
|
|
lincat Interj = {s : Str} ;
|
|
lincat Voc = {s : Str} ;
|
|
|
|
linref N,N2,N3 = \n -> n.s ! Indef ! Sg ;
|
|
linref V, VA, VV, VS, VQ, V2, V2S, V2Q, V3, V2A, V2V =
|
|
\v -> v.present ! Sg ! P1 ++
|
|
case v.isRefl of {
|
|
True => "се" ;
|
|
False => []
|
|
} ;
|
|
|
|
}
|