summaryrefslogtreecommitdiff
path: root/grammars/testConversions/SimpleAbs.gf
diff options
context:
space:
mode:
authorpeb <unknown>2004-06-02 11:17:15 +0000
committerpeb <unknown>2004-06-02 11:17:15 +0000
commit7716f818869971da138cf706c124a6be73bbab62 (patch)
tree4ec44ec8a042d15b48a4554ef8333e6395487689 /grammars/testConversions/SimpleAbs.gf
parent9b0a96859790a4d30bf2071a20a7e7d29dbd1131 (diff)
*** empty log message ***
Diffstat (limited to 'grammars/testConversions/SimpleAbs.gf')
-rw-r--r--grammars/testConversions/SimpleAbs.gf7
1 files changed, 5 insertions, 2 deletions
diff --git a/grammars/testConversions/SimpleAbs.gf b/grammars/testConversions/SimpleAbs.gf
index 0cd6d3a05..2222bfc28 100644
--- a/grammars/testConversions/SimpleAbs.gf
+++ b/grammars/testConversions/SimpleAbs.gf
@@ -2,14 +2,16 @@
abstract SimpleAbs = {
cat
-S; VP; NP; V; N; D;
+S; VP; NP; V; N; D; P; PP;
fun
cyclic : S -> S;
-mkS : NP -> V -> S;
+mkS : NP -> VP -> S;
mkVP : V -> NP -> VP;
mkNP1 : D -> N -> NP;
mkNP2 : N -> NP;
+mkNP3 : NP -> PP -> NP;
+mkPP : P -> NP -> PP;
robin : NP;
dog : N;
@@ -18,6 +20,7 @@ love : V;
hate : V;
one : D;
all : D;
+inside : P;
}