(Som) Add npcomp field to VP for more fine-grained control of word order

This commit is contained in:
Inari Listenmaa
2019-09-26 11:39:36 +02:00
parent 4eed81d729
commit e63eae8519
3 changed files with 30 additions and 5 deletions

View File

@@ -88,12 +88,15 @@ concrete QuestionSom of Question = CatSom ** open
-- : IAdv -> IComp ;
CompIAdv iadv = { -- where (is it)
comp = \\_ => <[], iadv.s> ;
comp = \\_ => <[], []> ;
npcomp = iadv.s ;
stm = Waa NoCopula ;
} ;
-- : IP -> IComp ;
CompIP ip = { -- who (is it)
comp = \\_ => <[], ip.s ! Abs> ;
comp = \\_ => <[], []> ;
npcomp = ip.s ! Abs ;
stm = Waa NoCopula ;
} ;