From c09bf56ba2d371bc81bf377dd53e53ee3b3a02a3 Mon Sep 17 00:00:00 2001 From: aarne Date: Tue, 28 Mar 2017 07:40:37 +0000 Subject: [PATCH] RGL API files for Latin added --- lib/src/api/CombinatorsLat.gf | 8 ++++++++ lib/src/api/ConstructorsLat.gf | 4 ++++ lib/src/api/SymbolicLat.gf | 5 +++++ lib/src/api/SyntaxLat.gf | 5 +++++ lib/src/api/TryLat.gf | 3 +++ 5 files changed, 25 insertions(+) create mode 100644 lib/src/api/CombinatorsLat.gf create mode 100644 lib/src/api/ConstructorsLat.gf create mode 100644 lib/src/api/SymbolicLat.gf create mode 100644 lib/src/api/SyntaxLat.gf create mode 100644 lib/src/api/TryLat.gf diff --git a/lib/src/api/CombinatorsLat.gf b/lib/src/api/CombinatorsLat.gf new file mode 100644 index 000000000..059b4a219 --- /dev/null +++ b/lib/src/api/CombinatorsLat.gf @@ -0,0 +1,8 @@ +--# -path=.:alltenses:prelude + +resource CombinatorsLat = Combinators - [ appCN, appCNc ] with + (Cat = CatLat), + (Structural = StructuralLat), + (Noun = NounLat), + (Constructors = ConstructorsLat) ** + {} diff --git a/lib/src/api/ConstructorsLat.gf b/lib/src/api/ConstructorsLat.gf new file mode 100644 index 000000000..7103ccb81 --- /dev/null +++ b/lib/src/api/ConstructorsLat.gf @@ -0,0 +1,4 @@ +--# -path=.:alltenses:prelude:../latin + +resource ConstructorsLat = Constructors with (Grammar = GrammarLat) ** + open MissingLat in {} diff --git a/lib/src/api/SymbolicLat.gf b/lib/src/api/SymbolicLat.gf new file mode 100644 index 000000000..998364997 --- /dev/null +++ b/lib/src/api/SymbolicLat.gf @@ -0,0 +1,5 @@ +--# -path=.:../icelandic:../common:../abstract:../prelude + +resource SymbolicLat = Symbolic with + (Symbol = SymbolLat), + (Grammar = GrammarLat) ; diff --git a/lib/src/api/SyntaxLat.gf b/lib/src/api/SyntaxLat.gf new file mode 100644 index 000000000..b859bb321 --- /dev/null +++ b/lib/src/api/SyntaxLat.gf @@ -0,0 +1,5 @@ +--# -path=.:alltenses:prelude + +instance SyntaxLat of Syntax = + ConstructorsLat, CatLat, StructuralLat, CombinatorsLat ; + diff --git a/lib/src/api/TryLat.gf b/lib/src/api/TryLat.gf new file mode 100644 index 000000000..14093181e --- /dev/null +++ b/lib/src/api/TryLat.gf @@ -0,0 +1,3 @@ +--# -path=.:../latin:../common:../abstract:../prelude + +resource TryLat = SyntaxLat, LexiconLat, ParadigmsLat - [mkAdv,mkAdN,mkOrd] ;