1
0
forked from GitHub/gf-core

added ConstructionIta

This commit is contained in:
aarne
2014-06-18 09:57:17 +00:00
parent c9dc7db3dd
commit 2fa70fdda5
5 changed files with 154 additions and 5 deletions

View File

@@ -138,7 +138,8 @@ oper
mkPN : overload {
mkPN : Str -> PN ; -- femininne for "-a", otherwise masculine
mkPN : Str -> Gender -> PN -- set gender manually
mkPN : Str -> Gender -> PN ; -- set gender manually
mkPN : N -> PN ; -- get gender from noun
} ;
@@ -490,7 +491,8 @@ oper
mkPN = overload {
mkPN : Str -> PN = regPN ;
mkPN : Str -> Gender -> PN = mk2PN
mkPN : Str -> Gender -> PN = mk2PN ;
mkPN : N -> PN = \n -> lin PN {s = n.s ! Sg ; g = n.g} ;
} ;
mkA = overload {