fix some warnings in the compilation of Turkish

This commit is contained in:
Krasimir Angelov
2017-08-19 23:34:59 +02:00
parent 128cae61d5
commit d0c7531dfa
5 changed files with 77 additions and 77 deletions
+6 -6
View File
@@ -16,7 +16,7 @@ concrete CatTur of Cat = CommonX ** open ResTur, Prelude in {
Card = {s : Number => Case => Str} ;
Ord = {s : Number => Case => Str} ;
Quant = {s : Str} ;
Prep = Compl ;
Prep = {s : Str; c : Case} ;
Numeral = {s : CardOrd => Number => Case => Str ; n : Number} ;
Digits = {s : CardOrd => Number => Case => Str ; n : Number; tail : DTail} ;
@@ -27,14 +27,14 @@ concrete CatTur of Cat = CommonX ** open ResTur, Prelude in {
-- Open lexical classes, e.g. Lexicon
V, VS, VQ, VA = Verb ;
V2, V2Q, V2V, V2A, V2S = Verb ** {c : Compl} ;
V3 = Verb ** {c1,c2 : Compl} ;
V2, V2Q, V2V, V2A, V2S = Verb ** {c : Prep} ;
V3 = Verb ** {c1,c2 : Prep} ;
A = Adjective ;
A2 = Adjective ** {c : Compl} ;
A2 = Adjective ** {c : Prep} ;
N = Noun ;
N2 = Noun ** {c : Compl} ;
N3 = Noun ** {c1,c2 : Compl} ;
N2 = Noun ** {c : Prep} ;
N3 = Noun ** {c1,c2 : Prep} ;
PN = Noun ;
}