restored Dictionary.get_V2 which had been omitted. It is a very common verb, although sense splits will certainly be needed.

This commit is contained in:
aarne
2014-12-06 11:36:54 +00:00
parent c3c1334bc3
commit 0e0221d2d0
13 changed files with 16 additions and 19 deletions

View File

@@ -369,28 +369,14 @@ param
False => {aux = x ; adv = "not" ; fin = [] ; inf = z}
} ;
insertObj : (Agr => Str) -> VP -> VP = \obj,vp -> {
s = vp.s ;
p = vp.p ;
prp = vp.prp ;
ptp = vp.ptp ;
inf = vp.inf ;
ad = vp.ad ;
insertObj : (Agr => Str) -> VP -> VP = \obj,vp -> vp ** {
s2 = \\a => vp.s2 ! a ++ obj ! a ;
isSimple = False ;
ext = vp.ext
} ;
insertObjPre : (Agr => Str) -> VP -> VP = \obj,vp -> {
s = vp.s ;
p = vp.p ;
prp = vp.prp ;
ptp = vp.ptp ;
inf = vp.inf ;
ad = vp.ad ;
insertObjPre : (Agr => Str) -> VP -> VP = \obj,vp -> vp ** {
s2 = \\a => obj ! a ++ vp.s2 ! a ;
isSimple = False ;
ext = vp.ext
} ;
insertObjc : (Agr => Str) -> SlashVP -> SlashVP = \obj,vp ->