mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-21 00:52:51 -06:00
Spanish verb inflection with vowel change
This commit is contained in:
@@ -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 = <>} ;
|
||||
|
||||
Reference in New Issue
Block a user