(Por) change mkPrep paradigm

- add Por to Make.hs
- rm elisDe (PhonoPor)
- change mkPrep paradigm, and make necessary changes
- rm ParsePor
This commit is contained in:
odanoburu
2018-06-20 12:31:36 -03:00
parent acd218d39b
commit 49a405cdb2
7 changed files with 11 additions and 193 deletions
+2 -2
View File
@@ -75,10 +75,10 @@ oper
mkPrep = overload {
mkPrep : Str -> Prep = -- other preposition
\p -> {s = p ; c = Acc ; isDir = False ; lock_Prep = <>} ;
mkPrep : Str -> Prep -> Prep =
mkPrep : Str -> Case -> Prep =
-- compound prepositions, e.g. "antes de", made as mkPrep
-- "antes" genitive
\p,c -> {s = p ; c = c.c ; isDir = False ; lock_Prep = <>}
\p,c -> {s = p ; c = c ; isDir = False ; lock_Prep = <>}
} ;