mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-07-01 19:48:34 -06:00
(Dut) Make postmodifier AP take the predicative form; ComplA2 makes AP into postmodifier
This commit is contained in:
@@ -161,10 +161,14 @@ concrete NounDut of Noun = CatDut ** open ResDut, Prelude in {
|
||||
let
|
||||
g = cn.g
|
||||
in {
|
||||
s = \\a,n =>
|
||||
preOrPost ap.isPre
|
||||
(ap.s ! agrP3 Sg ! agrAdj g a n)
|
||||
(cn.s ! a ! n) ;
|
||||
s = \\a,n =>
|
||||
let gan : Gender*Adjf*NForm = case ap.isPre of {
|
||||
True => <g,a,n> ;
|
||||
False => <Neutr,Strong,NF Sg Nom> } ;
|
||||
af = agrAdj gan.p1 gan.p2 gan.p3 ;
|
||||
in preOrPost ap.isPre
|
||||
(ap.s ! agrP3 Sg ! af)
|
||||
(cn.s ! a ! n) ;
|
||||
g = g
|
||||
} ;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user