Add RGL API grammar modules for Maltese

This commit is contained in:
john.j.camilleri
2012-10-26 13:12:00 +00:00
parent 5bfaed7b10
commit 58cb521629
5 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
--# -path=.:alltenses:prelude
resource CombinatorsMlt = Combinators with
(Cat = CatMlt),
(Structural = StructuralMlt),
(Constructors = ConstructorsMlt) ;

View File

@@ -0,0 +1,3 @@
--# -path=.:alltenses:prelude
resource ConstructorsMlt = Constructors with (Grammar = GrammarMlt) ;

View File

@@ -0,0 +1,5 @@
--# -path=.:present:mathematical:prelude
resource SymbolicMlt = Symbolic with
(Symbol = SymbolMlt),
(Grammar = GrammarMlt) ;

5
lib/src/api/SyntaxMlt.gf Normal file
View File

@@ -0,0 +1,5 @@
--# -path=.:alltenses:prelude
instance SyntaxMlt of Syntax =
ConstructorsMlt, CatMlt, StructuralMlt, CombinatorsMlt ;

6
lib/src/api/TryMlt.gf Normal file
View File

@@ -0,0 +1,6 @@
--# -path=.:alltenses:prelude
resource TryMlt = SyntaxMlt, LexiconMlt, ParadigmsMlt **
open (P = ParadigmsMlt) in {
}