mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-12 20:52:50 -06:00
place verb particle after negation in Scandinavian
This commit is contained in:
@@ -302,8 +302,8 @@ oper
|
||||
|
||||
|
||||
insertObjPron : Bool -> (Agr => Str) -> VP -> VP = \isPron,obj,vp -> vp ** {
|
||||
n1 = \\a => if_then_Str isPron (obj ! a ++ vp.n2 ! a) [] ;
|
||||
n2 = \\a => if_then_Str isPron [] (obj ! a ++ vp.n2 ! a) ;
|
||||
n1 = \\a => vp.n1 ! a ++ if_then_Str isPron (obj ! a) [] ;
|
||||
n2 = \\a => vp.n2 ! a ++ if_then_Str isPron [] (obj ! a) ;
|
||||
en2 = notB isPron ;
|
||||
} ;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user