add the API modules for Romanian

This commit is contained in:
krasimir
2009-09-12 13:34:01 +00:00
parent 57e53d46f6
commit f5e4cd4b9f
6 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
--# -path=.:alltenses:prelude
resource CombinatorsRon = Combinators with
(Cat = CatRon),
(Structural = StructuralRon),
(Constructors = ConstructorsRon) ;

View File

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

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

@@ -0,0 +1,5 @@
--# -path=.:alltenses:prelude
instance SyntaxRon of Syntax =
ConstructorsRon, CatRon, StructuralRon, CombinatorsRon ;

22
lib/src/api/TryRon.gf Normal file
View File

@@ -0,0 +1,22 @@
--# -path=.:alltenses:prelude
resource TryRon = SyntaxRon-[mkAdN], LexiconRon, ParadigmsRon - [mkAdv,mkAdN,mkOrd] **
open (P = ParadigmsRon) in {
oper
mkAdv = overload SyntaxEng {
mkAdv : Str -> Adv = P.mkAdv ;
} ;
mkAdN = overload {
mkAdN : CAdv -> AdN = SyntaxEng.mkAdN ;
mkAdN : Str -> AdN = P.mkAdN ;
} ;
mkOrd = overload SyntaxEng {
mkOrd : Str -> Ord = P.mkOrd ;
} ;
}

View File

@@ -0,0 +1,5 @@
--# -path=.:../abstract:../common:../prelude
concrete AllRon of AllRonAbs =
LangRon
** {} ;

View File

@@ -0,0 +1,3 @@
abstract AllRonAbs =
Lang
** {} ;