summaryrefslogtreecommitdiff
path: root/grammars/testConversions
diff options
context:
space:
mode:
authorpeb <unknown>2004-06-18 14:23:15 +0000
committerpeb <unknown>2004-06-18 14:23:15 +0000
commit1efb265000b19f65b18980e61955d11afd67bcba (patch)
treeba6226670bbad398d68c1a7cb8c90b3c48756bde /grammars/testConversions
parent22613ceb3772722f6e5a5a4470bedd7d6d727474 (diff)
*** empty log message ***
Diffstat (limited to 'grammars/testConversions')
-rw-r--r--grammars/testConversions/SimpleAbs.gf2
-rw-r--r--grammars/testConversions/SimpleSwe.gf2
-rw-r--r--grammars/testConversions/TestVars.gf3
3 files changed, 4 insertions, 3 deletions
diff --git a/grammars/testConversions/SimpleAbs.gf b/grammars/testConversions/SimpleAbs.gf
index 35ea9bdff..f22977ca3 100644
--- a/grammars/testConversions/SimpleAbs.gf
+++ b/grammars/testConversions/SimpleAbs.gf
@@ -5,7 +5,7 @@ cat
S; VP; NP; V; N; D; P; PP;
fun
-cyclic : S -> S;
+-- cyclic : S -> S;
mkS : NP -> VP -> S;
mkVP : V -> NP -> VP;
mkNP1 : D -> N -> NP;
diff --git a/grammars/testConversions/SimpleSwe.gf b/grammars/testConversions/SimpleSwe.gf
index eb02681c5..273f6c6ba 100644
--- a/grammars/testConversions/SimpleSwe.gf
+++ b/grammars/testConversions/SimpleSwe.gf
@@ -12,7 +12,7 @@ PP = {s : Str};
P = {s : Str};
lin
-cyclic x = x;
+-- cyclic x = x;
mkS x y = {s = x.s ++ y.s};
mkVP x y = {s = x.s ++ y.s};
mkNP1 x y = {s = x.s ! y.g ++ y.s ! x.n};
diff --git a/grammars/testConversions/TestVars.gf b/grammars/testConversions/TestVars.gf
index 3b5b67c9a..c28810e64 100644
--- a/grammars/testConversions/TestVars.gf
+++ b/grammars/testConversions/TestVars.gf
@@ -27,7 +27,8 @@ concrete TestVars of TestVarsA = open TestVarsR in {
lincat S = { s : Str };
lin
--s = { s = variants { "a" ; "b" ; "c" } };
-e = { s = variants { "e" ; "f" } };
+--e = { s = variants { "e" ; "f" } };
+e = { s = "e" };
ee x = { s = x.s ++ x.s };
f = { s = "g" };
ff x = { s = "e" ++ x.s };