mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-27 03:46:29 -06:00
(May) Add some determiners + fix word order in DetCN
This commit is contained in:
@@ -8,7 +8,11 @@ concrete NounMay of Noun = CatMay ** open ResMay, Prelude in {
|
||||
|
||||
-- : Det -> CN -> NP
|
||||
DetCN det cn = {
|
||||
s = det.s ++ cn.s ! NF det.n Bare ; -- TODO add possessive determiners
|
||||
s =
|
||||
case det.isPoss of {
|
||||
True => cn.s ! NF det.n (Poss P3) ; -- TODO add possessive determiners
|
||||
False => cn.s ! NF det.n Bare }
|
||||
++ det.s ;
|
||||
p = P3
|
||||
} ;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user