Dutch api modules

This commit is contained in:
aarne
2009-11-17 19:21:21 +00:00
parent 9927088414
commit d4ac17b9d2
9 changed files with 96 additions and 65 deletions

View File

@@ -0,0 +1,6 @@
--# -path=.:alltenses:prelude
resource CombinatorsDut = Combinators with
(Cat = CatDut),
(Structural = StructuralDut),
(Constructors = ConstructorsDut) ;

View File

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

View File

@@ -0,0 +1,5 @@
--# -path=.:present:mathematical:prelude
resource SymbolicDut = Symbolic with
(Symbol = SymbolDut),
(Grammar = GrammarDut) ;

4
lib/src/api/SyntaxDut.gf Normal file
View File

@@ -0,0 +1,4 @@
--# -path=.:alltenses:prelude
instance SyntaxDut of Syntax = ConstructorsDut, CatDut, StructuralDut, CombinatorsDut ;

3
lib/src/api/TryDut.gf Normal file
View File

@@ -0,0 +1,3 @@
--# -path=.:alltenses:prelude
resource TryDut = SyntaxDut, LexiconDut, ParadigmsDut - [mkAdv,mkOrd] ;