From 2c613bfc832d7861a41ae152f91883f13ea88900 Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Tue, 14 Apr 2026 09:06:11 +0200 Subject: [PATCH] added dummy ExtendMlt --- src/maltese/AllMlt.gf | 4 ++-- src/maltese/AllMltAbs.gf | 2 +- src/maltese/ExtendMlt.gf | 7 +++++++ 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 src/maltese/ExtendMlt.gf diff --git a/src/maltese/AllMlt.gf b/src/maltese/AllMlt.gf index 1a37a34f..58334086 100644 --- a/src/maltese/AllMlt.gf +++ b/src/maltese/AllMlt.gf @@ -10,7 +10,7 @@ concrete AllMlt of AllMltAbs = LangMlt, DictMlt, IrregMlt, - ExtraMlt - ** { + ExtendMlt + ** open ExtraMlt in { } ; diff --git a/src/maltese/AllMltAbs.gf b/src/maltese/AllMltAbs.gf index 5a545fc6..dcd022b3 100644 --- a/src/maltese/AllMltAbs.gf +++ b/src/maltese/AllMltAbs.gf @@ -10,5 +10,5 @@ abstract AllMltAbs = Lang, DictMltAbs, IrregMltAbs, - ExtraMltAbs + Extend ** {} ; diff --git a/src/maltese/ExtendMlt.gf b/src/maltese/ExtendMlt.gf new file mode 100644 index 00000000..fdfd8856 --- /dev/null +++ b/src/maltese/ExtendMlt.gf @@ -0,0 +1,7 @@ +concrete ExtendMlt of Extend = + CatMlt ** ExtendFunctor - [ + ComplDirectVS, + ComplDirectVQ + ] + with (Grammar = GrammarMlt) ** { +}