mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-12 08:30:12 -06:00
* added Bantu functor * added egekusii language based on Bantu functor * added kikamba language based on Bantu functor * added kiswahili language based on Bantu functor
16 lines
455 B
Plaintext
16 lines
455 B
Plaintext
concrete AdjectiveGus of Adjective = CatGus **AdjectiveBantu-[ComparA,UseComparA,ComplA2]
|
|
with (ResBantu = ResGus)** open DiffGus in
|
|
{
|
|
flags coding=utf8;
|
|
lin
|
|
ComparA a np = {
|
|
s = \\g,n => a.s !AAdj g n ++ conjThan ++ np.s ! npNom ;
|
|
isPre = False} ;
|
|
|
|
UseComparA a = {s = \\g,n=> a.s !AAdj g n;isPre = True};
|
|
|
|
ComplA2 a np = {
|
|
s = \\g,n => a.s !AAdj g n ++ a.c2 ++ np.s ! NPAcc;
|
|
isPre = False
|
|
} ;
|
|
} |