From f36bbade45732b0733802465d3173ad008fa48c4 Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Fri, 14 Jun 2024 17:02:04 +0200 Subject: [PATCH] added CompoundN --- src/dutch/ExtendDut.gf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/dutch/ExtendDut.gf b/src/dutch/ExtendDut.gf index 6769eda51..3e0c134a1 100644 --- a/src/dutch/ExtendDut.gf +++ b/src/dutch/ExtendDut.gf @@ -6,7 +6,8 @@ concrete ExtendDut of Extend = VPS, BaseVPS, ConsVPS, MkVPS, ConjVPS, PredVPS, - PassVPSlash, PassAgentVPSlash + PassVPSlash, PassAgentVPSlash, + CompoundN ] with (Grammar = GrammarDut) ** @@ -121,4 +122,9 @@ lin isPron = False } ; +lin CompoundN n1 n2 = { + s = \\n => n1.s ! NF Sg Nom ++ BIND ++ n2.s ! n ; + g = n2.g + } ; + }