Added paths.

This commit is contained in:
aarne
2003-11-04 07:25:37 +00:00
parent 94326929b1
commit 0df32e1474
5 changed files with 16 additions and 3 deletions

View File

@@ -15,13 +15,14 @@
-- They should use $resource.Abs.gf$ to access the syntactic rules.
-- This file can be consulted in those, hopefully rare, occasions in which
-- one has to know how the syntactic categories are
-- implemented. The parameter types are defined in $types.Eng.gf$.
-- implemented. The parameter types are defined in $TypesEng.gf$.
concrete ResEng of ResAbs = open Prelude, Syntax in {
flags
startcat=Phr ;
parser=chart ;
lexer=text ;
unlexer=text ;
lincat
N = CommNoun ;

View File

@@ -1,3 +1,6 @@
-- use this path to read the grammar from the same directory
--# -path=.:../abstract:../../prelude
concrete TestEng of TestAbs = ResEng ** open Syntax in {
flags startcat=Phr ; lexer=text ; parser=chart ; unlexer=text ;

View File

@@ -1,3 +1,6 @@
-- use this path to read the grammar from the same directory
--# -path=.:../abstract:../../prelude
concrete TestFin of TestAbs = ResFin ** open Prelude, Syntax in {
flags startcat=Phr ; lexer=text ; parser=chart ; unlexer=text ;
@@ -37,4 +40,4 @@ lin
John = mkProperName (sKukko "Jussi" "Jussin" "Jusseja") ;
Mary = mkProperName (sKukko "Mari" "Marin" "Mareja") ;
} ;
} ;

View File

@@ -1,3 +1,6 @@
-- use this path to read the grammar from the same directory
--# -path=.:../abstract:../../prelude
concrete TestDeu of TestAbs = ResDeu ** open Syntax in {
flags startcat=Phr ; lexer=text ; parser=chart ; unlexer=text ;

View File

@@ -1,3 +1,6 @@
-- use this path to read the grammar from the same directory
--# -path=.:../abstract:../../prelude
concrete TestSwe of TestAbs = ResSwe ** open Syntax in {
flags startcat=Phr ; lexer=text ; parser=chart ; unlexer=text ;