Sindhi-resource-grammar

This commit is contained in:
virk.shafqat
2012-02-21 09:20:38 +00:00
parent 14e0237950
commit cf221bd363
45 changed files with 5107 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
--# -path=.:alltenses:prelude
resource CombinatorsSnd = Combinators with
(Cat = CatSnd),
(Structural = StructuralSnd),
(Constructors = ConstructorsSnd) ;

View File

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

View File

@@ -0,0 +1,5 @@
--# -path=.:present:mathematical:prelude
resource SymbolicSnd = Symbolic with
(Symbol = SymbolSnd),
(Grammar = GrammarSnd) ;

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

@@ -0,0 +1,5 @@
--# -path=.:./alltenses:../prelude
instance SyntaxSnd of Syntax =
ConstructorsSnd, CatSnd, StructuralSnd, CombinatorsSnd ;

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

@@ -0,0 +1,22 @@
--# -path=.:alltenses:prelude:/users/shafqat/www.grammaticalframework.org_4/lib/src/sindhi
resource TrySnd = SyntaxSnd - [mkAdN] , LexiconSnd, ParadigmsSnd - [mkAdv,mkDet,mkIP,mkAdN] **
open (P = ParadigmsSnd) in {
oper
mkAdv = overload SyntaxSnd {
mkAdv : Str -> Adv = P.mkAdv ;
} ;
mkAdN = overload {
mkAdN : CAdv -> AdN = SyntaxSnd.mkAdN ;
--- mkAdN : Str -> AdN = P.mkAdN ;
} ;
-- mkOrd = overload SyntaxSnd {
-- mkOrd : A -> Ord = SyntaxSnd.OrdSuperl ;
-- } ;
}