mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-07-01 19:48:34 -06:00
added infinitives
This commit is contained in:
@@ -427,7 +427,12 @@ oper
|
||||
} ;
|
||||
v2tov3 : Verb2 -> Verb3 = \v -> v ** {c3 = Dat} ;
|
||||
|
||||
mkVerb : (sg3 : Str) -> Verb = mkVerbReg endingsIndef "TODO:infinitive" ; -- TODO
|
||||
mkVerb : (sg3 : Str) -> Verb = \sg3 ->
|
||||
let inf = case sg3 of {
|
||||
_ + ("ít" | (#c + #c)) => sg3 + harm3 "ani" "eni" "eni" ! getHarm sg3 ;
|
||||
_ => sg3 + "ni"
|
||||
}
|
||||
in mkVerbReg endingsIndef inf sg3 ;
|
||||
|
||||
mkVerbReg : VerbEndings -> (inf, stem : Str) -> Verb = \hf,inf,stem ->
|
||||
let h : Harm = getHarm stem ;
|
||||
|
||||
Reference in New Issue
Block a user