Icelandic added to RGL by Bjarki Traustason

This commit is contained in:
bjatra5
2017-01-16 16:30:50 +00:00
parent 243d0837ec
commit 07db1948a8
39 changed files with 5265 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
--# -path=.:alltenses:prelude
resource CombinatorsIce = Combinators - [ appCN, appCNc ] with
(Cat = CatIce),
(Structural = StructuralIce),
(Noun = NounIce),
(Constructors = ConstructorsIce) **
{}

View File

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

View File

@@ -0,0 +1,5 @@
--# -path=.:../english:../common:../abstract:../prelude
resource SymbolicIce = Symbolic with
(Symbol = SymbolIce),
(Grammar = GrammarIce) ;

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

@@ -0,0 +1,5 @@
--# -path=.:alltenses:prelude
instance SyntaxIce of Syntax =
ConstructorsIce, CatIce, StructuralIce, CombinatorsIce ;

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

@@ -0,0 +1,3 @@
--# -path=.:alltenses:prelude
resource TryIce = SyntaxIce, LexiconIce, ParadigmsIce - [mkAdv,mkAdN,mkOrd] ;