1
0
forked from GitHub/gf-core

PersianAPI

This commit is contained in:
virk.shafqat
2011-06-13 18:44:29 +00:00
parent 052c75a71c
commit 50057fb219
5 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
--# -path=.:alltenses:prelude
resource CombinatorsPes = Combinators with
(Cat = CatPes),
(Structural = StructuralPes),
(Constructors = ConstructorsPes) ;

View File

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

View File

@@ -0,0 +1,5 @@
--# -path=.:present:mathematical:prelude
resource SymbolicPes = Symbolic with
(Symbol = SymbolPes),
(Grammar = GrammarPes) ;

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

@@ -0,0 +1,5 @@
--# -path=.:./alltenses:../prelude
instance SyntaxPes of Syntax =
ConstructorsPes, CatPes, StructuralPes, CombinatorsPes ;

12
lib/src/api/TryPes.gf Normal file
View File

@@ -0,0 +1,12 @@
--# -path=.:alltenses:prelude:/users/shafqat/www.grammaticalframework.org_0/lib/src/persian
resource TryPes = SyntaxPes, LexiconPes, ParadigmsPes -[mkDet,mkQuant]**
open (P = ParadigmsPes) in {
-- oper
-- mkAdv = overload SyntaxPes {
-- mkAdv : Str -> Adv = P.mkAdv ;
-- } ;
}