summaryrefslogtreecommitdiff
path: root/grammars/testConversions/SimpleAbs.gf
diff options
context:
space:
mode:
authorpeb <unknown>2004-04-29 08:11:20 +0000
committerpeb <unknown>2004-04-29 08:11:20 +0000
commit51da7e3c0f5e743f3508fa3e6b645f2ccacb81ab (patch)
treed748d69b1300cb3f17d3a9af37361f4c5fc0cc83 /grammars/testConversions/SimpleAbs.gf
parentb5bb4fc2b5b1d7e8ce17eb87722ba11e46a2ab2b (diff)
29/4-04, peb: added directory 'testConversions' with a simple grammar
for testing grammar conversions
Diffstat (limited to 'grammars/testConversions/SimpleAbs.gf')
-rw-r--r--grammars/testConversions/SimpleAbs.gf24
1 files changed, 24 insertions, 0 deletions
diff --git a/grammars/testConversions/SimpleAbs.gf b/grammars/testConversions/SimpleAbs.gf
new file mode 100644
index 000000000..0cd6d3a05
--- /dev/null
+++ b/grammars/testConversions/SimpleAbs.gf
@@ -0,0 +1,24 @@
+
+abstract SimpleAbs = {
+
+cat
+S; VP; NP; V; N; D;
+
+fun
+cyclic : S -> S;
+mkS : NP -> V -> S;
+mkVP : V -> NP -> VP;
+mkNP1 : D -> N -> NP;
+mkNP2 : N -> NP;
+
+robin : NP;
+dog : N;
+child : N;
+love : V;
+hate : V;
+one : D;
+all : D;
+
+}
+
+