forked from GitHub/gf-core
24 lines
827 B
Plaintext
24 lines
827 B
Plaintext
concrete VerbEng of Verb = CatEng ** open ResEng in {
|
|
|
|
flags optimize=all_subs ;
|
|
|
|
lin
|
|
UseV = predV ;
|
|
ComplV2 v np = insertObj (\\_ => v.c2 ++ np.s ! Acc) (predV v) ;
|
|
ComplV2 v np = insertObj (\\_ => v.c2 ++ np.s ! Acc) (predV v) ;
|
|
ComplV3 v np np2 =
|
|
insertObj (\\_ => v.c2 ++ np.s ! Acc ++ v.c3 ++ np2.s ! Acc) (predV v) ;
|
|
ComplVV v vp = insertObj (\\a => v.c2 ++ infVP vp a) (predV v) ;
|
|
ComplVS v s = insertObj (\\_ => conjThat ++ s.s) (predV v) ;
|
|
ComplVQ v q = insertObj (\\_ => q.s) (predV v) ;
|
|
UseComp comp = insertObj comp.s (predAux auxBe) ;
|
|
AdvVP vp adv = insertObj (\\_ => adv.s) vp ;
|
|
|
|
UseVV, UseVS, UseVQ = \vv -> {s = vv.s ; c2 = []} ; -- no "to"
|
|
|
|
CompAP ap = {s = \\_ => ap.s} ;
|
|
CompNP np = {s = \\_ => np.s ! Acc} ;
|
|
CompAdv a = {s = \\_ => a.s} ;
|
|
|
|
}
|