{
%% approximate class to handle ni-ni coord on verbs
%% example: il ne veut ni boire ni manger
%% a complete solution would handle coordination at S-level, but I don't
%% know how to do it properly in FRMG
%% indeed, aux and modal attach at Infl or V level, so the coord should be below these nodes
node(Root).cat = value(V1);
node(Root).bot = node(Foot).top;
node(Root).top.mode = value(infinitive);
desc.dummy.ante = value(+);
node Coord2: [cat: S, type: subst, top:[mode: infinitive, extraction: -, sat: -]];
node(Anchor).lex = value(ni|et|ou|soit);
}
Ajouter un commentaire