From 76bf6b736381381b6ba33d366b64efaf658d751d Mon Sep 17 00:00:00 2001 From: odanoburu Date: Mon, 18 Mar 2019 14:52:02 -0300 Subject: [PATCH] (Cat,Ita) add stub implementations of Extend - using ExtendRomanceFunctor - can't compile ExtendFre using ExtendRomanceFunctor though.. --- src/catalan/AllCat.gf | 5 +++-- src/catalan/ExtendCat.gf | 19 +++++++++++++++++++ src/italian/AllIta.gf | 3 ++- src/italian/ExtendIta.gf | 19 +++++++++++++++++++ 4 files changed, 43 insertions(+), 3 deletions(-) create mode 100644 src/catalan/ExtendCat.gf create mode 100644 src/italian/ExtendIta.gf diff --git a/src/catalan/AllCat.gf b/src/catalan/AllCat.gf index d679dac5..254b1da2 100644 --- a/src/catalan/AllCat.gf +++ b/src/catalan/AllCat.gf @@ -3,5 +3,6 @@ concrete AllCat of AllCatAbs = LangCat, IrregCat, - ExtraCat - ** {} ; + ExtraCat + ** open ExtendCat + in {} ; diff --git a/src/catalan/ExtendCat.gf b/src/catalan/ExtendCat.gf new file mode 100644 index 00000000..20ab56ae --- /dev/null +++ b/src/catalan/ExtendCat.gf @@ -0,0 +1,19 @@ +--# -path=alltenses:../common:../abstract:../romance +concrete ExtendCat of Extend = CatCat ** ExtendRomanceFunctor-- - + -- [ + -- ] + -- don't forget to put the names of your own + -- definitions here + with + (Grammar = GrammarCat), (Syntax = SyntaxCat), (ResRomance = ResCat) ** + open + GrammarCat, + ResCat, + MorphoCat, + Coordination, + Prelude, + ParadigmsCat in { + -- put your own definitions here + + +} ; diff --git a/src/italian/AllIta.gf b/src/italian/AllIta.gf index 67ce19e8..d2eece40 100644 --- a/src/italian/AllIta.gf +++ b/src/italian/AllIta.gf @@ -4,4 +4,5 @@ concrete AllIta of AllItaAbs = LangIta, -- IrregIta, ExtraIta - ** {} ; + ** open ExtendIta + in {} ; diff --git a/src/italian/ExtendIta.gf b/src/italian/ExtendIta.gf new file mode 100644 index 00000000..0df8be02 --- /dev/null +++ b/src/italian/ExtendIta.gf @@ -0,0 +1,19 @@ +--# -path=alltenses:../common:../abstract:../romance +concrete ExtendIta of Extend = CatIta ** ExtendRomanceFunctor-- - + -- [ + -- ] + -- don't forget to put the names of your own + -- definitions here + with + (Grammar = GrammarIta), (Syntax = SyntaxIta), (ResRomance = ResIta) ** + open + GrammarIta, + ResIta, + MorphoIta, + Coordination, + Prelude, + ParadigmsIta in { + -- put your own definitions here + + +} ;