1
0
forked from GitHub/gf-rgl

Merge branch 'master' of github.com:GrammaticalFramework/gf-rgl

This commit is contained in:
Krasimir Angelov
2025-02-05 08:30:24 +01:00
6 changed files with 13 additions and 9 deletions

View File

@@ -9,8 +9,6 @@ lincat V, VA, VV, VS, VQ = Verb ;
lincat V2, V2S, V2Q = Verb ** {c2 : Compl} ;
lincat V3, V2A, V2V = Verb ** {c2,c3 : Compl} ;
lincat Prep = Compl ;
lincat Interj = {s : Str} ;
lincat Voc = {s : Str} ;
lincat Numeral = {s : Str} ;
lincat Digits = {s : Str; n : Number; tail : DTail} ;
@@ -24,7 +22,4 @@ lincat Det = {s : Case => Gender => Str; spec : Species; n : Number} ;
lincat NP = {s: Case => Str; a : Agr} ;
lincat Pron = {s: Case => Str; acc_clit, dat_clit : Str; a : Agr} ;
lincat PConj = {s : Str} ;
lincat Phr, Utt = {s : Str} ;
}

View File

@@ -995,8 +995,8 @@ pronNP : (N,A,G,D : Str) -> PerNumGen -> NP = \N,A,G,D,png-> {
{
s = \\c =>case c of
{
Gen|Dat => affix!c + word;
_ => word + affix!c
Gen|Dat => affix!c ++ Predef.BIND ++ word;
_ => word ++ Predef.BIND ++ affix!c
};
a = {png = Per3 n Masc ; isPron = False };
lock_NP = <>

View File

@@ -3,6 +3,7 @@
concrete LangFre of Lang =
GrammarFre,
LexiconFre
,MarkupFre - [stringMark]
,DocumentationFre --# notpresent
,ConstructionFre
** {

View File

@@ -9,7 +9,5 @@ lincat V3, V2A, V2V = Verb ** {c2,c3 : Compl} ;
lincat A = {s : Str} ;
lincat A2 = A ** {c2 : Compl} ;
lincat Prep = Compl ;
lincat Interj = {s : Str} ;
lincat Voc = {s : Str} ;
}

View File

@@ -0,0 +1,7 @@
--# -path=.:alltenses
concrete MorphoDictChi of MorphoDictChiAbs =
CatChi [N,A,V,Adv,Prep] **
open
ParadigmsChi
in
{}

View File

@@ -0,0 +1,3 @@
abstract MorphoDictChiAbs =
Cat [N,A,V,Adv,Prep] **
{}