Added ExtendGer as almost dummy to start with

This commit is contained in:
Aarne Ranta
2021-01-13 16:01:50 +01:00
parent ec159d05d4
commit c55592cea6
3 changed files with 24 additions and 1 deletions

View File

@@ -3,5 +3,8 @@
concrete AllGer of AllGerAbs =
LangGer,
IrregGer,
---- ExtendGer, ---- to replace ExtraGer
ExtraGer
** {} ;
**
open ExtendGer in ---- to force compilation
{} ;

View File

@@ -3,5 +3,6 @@
abstract AllGerAbs =
Lang,
IrregGerAbs,
---- Extend,
ExtraGerAbs
** {} ;

19
src/german/ExtendGer.gf Normal file
View File

@@ -0,0 +1,19 @@
--# -path=alltenses:../common:../abstract
concrete ExtendGer of Extend =
CatGer ** ExtendFunctor
- [InOrderToVP]
with
(Grammar = GrammarGer) **
open
GrammarGer,
ResGer,
Coordination,
Prelude,
ParadigmsGer in {
lin
InOrderToVP vp = {s = "um" ++ useInfVP False vp} ;
}