the rest of Urdu files - now compiles with lib/src/Make

This commit is contained in:
aarne
2010-03-29 12:41:33 +00:00
parent 1402b10138
commit c2f97ef506
11 changed files with 117 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
--# -path=.:alltenses:prelude
resource CombinatorsUrd = Combinators with
(Cat = CatUrd),
(Structural = StructuralUrd),
(Constructors = ConstructorsUrd) ;

View File

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

View File

@@ -0,0 +1,5 @@
--# -path=.:present:mathematical:prelude
resource SymbolicUrd = Symbolic with
(Symbol = SymbolUrd),
(Grammar = GrammarUrd) ;

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

@@ -0,0 +1,5 @@
--# -path=.:./alltenses:../prelude
instance SyntaxUrd of Syntax =
ConstructorsUrd, CatUrd, StructuralUrd, CombinatorsUrd ;

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

@@ -0,0 +1,22 @@
--# -path=.:alltenses:prelude
--# -path=.:./present:c:/gf/lib/src/prelude:c:/gf/lib/src/abstract:c:/gf/lib/src/api:c:/gf/lib/src/urdu:c:/gf/lib/src/common
resource TryUrd = SyntaxUrd - [mkAdN] , LexiconUrd, ParadigmsUrd - [mkAdv,mkDet,mkIP,mkAdN] **
open (P = ParadigmsUrd) in {
oper
mkAdv = overload SyntaxUrd {
mkAdv : Str -> Adv = P.mkAdv ;
} ;
mkAdN = overload {
mkAdN : CAdv -> AdN = SyntaxUrd.mkAdN ;
--- mkAdN : Str -> AdN = P.mkAdN ;
} ;
-- mkOrd = overload SyntaxUrd {
-- mkOrd : A -> Ord = SyntaxUrd.OrdSuperl ;
-- } ;
}