Spanish verb inflection with vowel change

This commit is contained in:
aarne
2007-03-19 15:18:44 +00:00
parent 7f1999f97d
commit f0415dd0bc
3 changed files with 80 additions and 1 deletions

View File

@@ -220,6 +220,12 @@ oper
special_ppV : V -> Str -> V ;
-- Verbs with vowel alternatition in the stem - easiest to give with
-- two forms, e.g. "mostrar"/"muestro".
regAltV : (mostrar,muestro : Str) -> V ;
--3 Two-place verbs
--
-- Two-place verbs need a preposition, except the special case with direct object.
@@ -367,6 +373,8 @@ oper
vtyp = VHabere
} ;
regAltV x y = verboV (regAlternV x y) ;
mkV2 v p = {s = v.s ; vtyp = v.vtyp ; c2 = p ; lock_V2 = <>} ;
dirV2 v = mkV2 v accusative ;
v2V v = v ** {lock_V = <>} ;