mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-29 12:48:54 -06:00
Numeral in Syntax; Ara and Cat
This commit is contained in:
@@ -32,7 +32,8 @@ pretest:
|
|||||||
echo "gr -cat=Cl -number=11 -prob | tb" | $(GF) -probs=lang.gfprob -path=present:prelude -nocf ../present/Lang???.gfc
|
echo "gr -cat=Cl -number=11 -prob | tb" | $(GF) -probs=lang.gfprob -path=present:prelude -nocf ../present/Lang???.gfc
|
||||||
|
|
||||||
alltenses:
|
alltenses:
|
||||||
# $(GFC) arabic/LangAra.gf
|
$(GFC) arabic/LangAra.gf
|
||||||
|
$(GFC) catalan/LangCat.gf
|
||||||
$(GFC) danish/Danish.gf
|
$(GFC) danish/Danish.gf
|
||||||
$(GFC) english/English.gf
|
$(GFC) english/English.gf
|
||||||
$(GFC) finnish/Finnish.gf
|
$(GFC) finnish/Finnish.gf
|
||||||
|
|||||||
3
lib/resource-1.0/api/ConstructorsAra.gf
Normal file
3
lib/resource-1.0/api/ConstructorsAra.gf
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
|
resource ConstructorsAra = Constructors with (Grammar = GrammarAra) ;
|
||||||
3
lib/resource-1.0/api/ConstructorsCat.gf
Normal file
3
lib/resource-1.0/api/ConstructorsCat.gf
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
|
resource ConstructorsCat = Constructors with (Grammar = GrammarCat) ;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
interface Syntax = Constructors, Cat, Structural ** {} ;
|
interface Syntax = Constructors, Cat, Structural, Numeral ;
|
||||||
|
|
||||||
|
|||||||
4
lib/resource-1.0/api/SyntaxAra.gf
Normal file
4
lib/resource-1.0/api/SyntaxAra.gf
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
|
instance SyntaxAra of Syntax = ConstructorsAra, CatAra, StructuralAra, NumeralAra ;
|
||||||
|
|
||||||
4
lib/resource-1.0/api/SyntaxCat.gf
Normal file
4
lib/resource-1.0/api/SyntaxCat.gf
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
|
instance SyntaxCat of Syntax = ConstructorsCat, CatCat, StructuralCat, NumeralCat ;
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
instance SyntaxDan of Syntax = ConstructorsDan, CatDan, StructuralDan ** {} ;
|
instance SyntaxDan of Syntax = ConstructorsDan, CatDan, StructuralDan, NumeralDan ;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
instance SyntaxEng of Syntax = ConstructorsEng, CatEng, StructuralEng ** {} ;
|
instance SyntaxEng of Syntax = ConstructorsEng, CatEng, StructuralEng, NumeralEng ;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
instance SyntaxFin of Syntax = ConstructorsFin, CatFin, StructuralFin ** {} ;
|
instance SyntaxFin of Syntax = ConstructorsFin, CatFin, StructuralFin, NumeralFin ;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
instance SyntaxFre of Syntax = ConstructorsFre, CatFre, StructuralFre ** {} ;
|
instance SyntaxFre of Syntax = ConstructorsFre, CatFre, StructuralFre, NumeralFre ;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
instance SyntaxGer of Syntax = ConstructorsGer, CatGer, StructuralGer ** {} ;
|
instance SyntaxGer of Syntax = ConstructorsGer, CatGer, StructuralGer, NumeralGer ;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
instance SyntaxIta of Syntax = ConstructorsIta, CatIta, StructuralIta ** {} ;
|
instance SyntaxIta of Syntax = ConstructorsIta, CatIta, StructuralIta, NumeralIta ;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
instance SyntaxNor of Syntax = ConstructorsNor, CatNor, StructuralNor ** {} ;
|
instance SyntaxNor of Syntax = ConstructorsNor, CatNor, StructuralNor, NumeralNor
|
||||||
|
;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
instance SyntaxRus of Syntax = ConstructorsRus, CatRus, StructuralRus ** {} ;
|
instance SyntaxRus of Syntax = ConstructorsRus, CatRus, StructuralRus, NumeralRus ;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
instance SyntaxSpa of Syntax = ConstructorsSpa, CatSpa, StructuralSpa ** {} ;
|
instance SyntaxSpa of Syntax = ConstructorsSpa, CatSpa, StructuralSpa, NumeralSpa ;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
--# -path=.:alltenses:prelude
|
--# -path=.:alltenses:prelude
|
||||||
|
|
||||||
instance SyntaxSwe of Syntax = ConstructorsSwe, CatSwe, StructuralSwe ** {} ;
|
instance SyntaxSwe of Syntax = ConstructorsSwe, CatSwe, StructuralSwe, NumeralSwe ;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user