Japanese added to RGL Make and synopsis

This commit is contained in:
aarne
2012-05-07 12:31:34 +00:00
parent 245a2b0007
commit ddf3a01c9b
12 changed files with 743 additions and 477 deletions

View File

@@ -0,0 +1,6 @@
--# -path=.:alltenses:prelude
resource CombinatorsJap = Combinators with
(Cat = CatJap),
(Structural = StructuralJap),
(Constructors = ConstructorsJap) ;

View File

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

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

@@ -0,0 +1,5 @@
--# -path=.:./alltenses
instance SyntaxJap of Syntax =
ConstructorsJap, CatJap, StructuralJap, CombinatorsJap ;

26
lib/src/api/TryJap.gf Normal file
View File

@@ -0,0 +1,26 @@
--# -path=.:alltenses:prelude
resource TryJap =
SyntaxJap - [mkAdN] ,
LexiconJap,
ParadigmsJap - [mkAdv,mkDet,mkIP,mkAdN,mkQuant] **
open (P = ParadigmsJap) in {
}
{-
oper
mkAdv = overload SyntaxJap {
mkAdv : Str -> Adv = P.mkAdv ;
} ;
mkAdN = overload {
mkAdN : CAdv -> AdN = SyntaxJap.mkAdN ;
--- mkAdN : Str -> AdN = P.mkAdN ;
} ;
-- mkOrd = overload SyntaxJap {
-- mkOrd : A -> Ord = SyntaxJap.OrdSuperl ;
-- } ;
-}