fixes in Fin: mkPrep with three arguments, pieni_A in MorphoDict

This commit is contained in:
aarneranta
2021-03-29 13:05:05 +02:00
parent 89b38c13d4
commit 1dc1530b20
3 changed files with 8 additions and 6 deletions
+6 -4
View File
@@ -76,14 +76,16 @@ oper
casePrep : Case -> Prep ; -- just case, e.g. adessive
mkPrep = overload {
mkPrep : Case -> Prep
mkPrep : Case -> Prep -- inessive
= casePrep ;
mkPrep : Str -> Prep
mkPrep : Str -> Prep -- kanssa
= postGenPrep ;
mkPrep : Case -> Str -> Prep
mkPrep : Case -> Str -> Prep -- genitive kanssa
= postPrep ;
mkPrep : Str -> Case -> Prep
mkPrep : Str -> Case -> Prep -- ilman partitive
= \s,c -> prePrep c s ;
mkPrep : Str -> Case -> Str -> Prep -- yhdessä genitive kanssa
= \s,c,t -> lin Prep {c = NPCase c ; s = <s,t,\\_ => []>}
} ;
accusative : Prep