1
0
forked from GitHub/gf-rgl

added linref and lindef for V2 and V3

This commit is contained in:
Krasimir Angelov
2025-02-05 11:45:20 +01:00
parent 904428fb36
commit 186a12df0c

View File

@@ -119,5 +119,13 @@ lincat
Adv = {s : Str ; isPron : Bool} ;
CAdv = {s, prep : Str ; deg : Degree} ;
lindef
V2 = \s -> {s=\\_,_=>s; leftVal=Nom; rightVal={s=[]; c=\\_ => Acc}} ;
V3 = \s -> {s=\\_,_=>s; leftVal=Nom; rightVal1={s=[]; c=\\_ => Acc}; rightVal2={s=[]; c=\\_ => Dat}} ;
linref
V2 = \v -> v.s ! Pos ! VInf ++ v.rightVal.s ;
V3 = \v -> v.s ! Pos ! VInf ++ v.rightVal1.s ++ v.rightVal2.s ;
}