VS category and some of its constructors

This commit is contained in:
krasimir
2008-02-22 14:56:35 +00:00
parent dd8331ce2b
commit 99df330e35
3 changed files with 11 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ concrete VerbBul of Verb = CatBul ** open ResBul in {
ComplV3 v np np2 =
insertObj (\\_ => v.c2 ++ np.s ! Acc ++ v.c3 ++ np2.s ! Acc) (predV v) ;
ComplVS v s = insertObj (\\_ => "," ++ "֌" ++ s.s) (predV v) ;
UseComp comp = insertObj comp.s (predV auxBe) ;
AdvVP vp adv = insertObj (\\_ => adv.s) vp ;
@@ -16,6 +18,8 @@ concrete VerbBul of Verb = CatBul ** open ResBul in {
PassV2 v = insertObj (\\a => v.s ! VPassive (aform a.gn Indef Acc)) (predV auxBe) ;
UseVS, UseVQ = \vv -> {s = vv.s ; c2 = [] ; isRefl = vv.isRefl} ; -- no "to"
CompNP np = {s = \\_ => np.s ! Acc} ;
CompAdv a = {s = \\_ => a.s} ;
}