1
0
forked from GitHub/gf-rgl

(Cat,Ita) add stub implementations of Extend

- using ExtendRomanceFunctor
- can't compile ExtendFre using ExtendRomanceFunctor though..
This commit is contained in:
odanoburu
2019-03-18 14:52:02 -03:00
parent 230d7afe1f
commit 76bf6b7363
4 changed files with 43 additions and 3 deletions

View File

@@ -4,4 +4,5 @@ concrete AllCat of AllCatAbs =
LangCat,
IrregCat,
ExtraCat
** {} ;
** open ExtendCat
in {} ;

19
src/catalan/ExtendCat.gf Normal file
View File

@@ -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
} ;

View File

@@ -4,4 +4,5 @@ concrete AllIta of AllItaAbs =
LangIta,
-- IrregIta,
ExtraIta
** {} ;
** open ExtendIta
in {} ;

19
src/italian/ExtendIta.gf Normal file
View File

@@ -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
} ;