verb

  1. class verb
  2. {
  3. <: _verb;
  4. node S:[id:S,cat:S];
  5. S >> V;
  6. - V::vagreement; V=V::V;
  7. %% For ante-verbal non clitic object such as rien or tout
  8. %% example: il n'a rien mangé
  9. node proobj_infl: [cat: pro, id:object, type:coanchor, lex: rien|tout];
  10. Infl >> proobj_infl;
  11. proobj_infl < v;
  12. %% exclusion with antepro before clitics (ne rien avoir mangé)
  13. proobj_infl =>
  14. node(v).cat = value(v),
  15. node(v).top.mode = value(participle),
  16. desc.dummy.proobj.position = value('before_v')
  17. ;
  18. ~ proobj_infl =>
  19. desc.dummy.proobj.position = value(-|'before_clitics')
  20. ;
  21. }

Ajouter un commentaire

Connectez-vous ou inscrivez-vous pour publier un commentaire

Class Graph View