diff options
Diffstat (limited to 'grammars/testConversions/SimpleAbs.gf')
| -rw-r--r-- | grammars/testConversions/SimpleAbs.gf | 7 |
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; } |
