1
0
forked from GitHub/gf-rgl

(Kor) Det, Quant

This commit is contained in:
Inari Listenmaa
2020-03-25 14:03:38 +01:00
parent cfdc4d9955
commit d83ded2624
3 changed files with 26 additions and 8 deletions

View File

@@ -59,7 +59,8 @@ oper
BaseQuant : Type = {
s : Str ;
isPoss : Bool
isPoss : Bool ;
p : Phono
} ;
Determiner : Type = BaseQuant ** {
@@ -90,8 +91,19 @@ oper
baseQuant : BaseQuant = {
s = [] ;
isPoss = False ;
p = Vowel ;
} ;
mkQuant : (s,sp : Str) -> Quant = \s,sp -> baseQuant ** {
s = s ;
sp = (mkNoun sp).s ;
p = (mkNoun sp).p ;
} ;
plural : NForm => Str = table {
Bare => "들" ;
nf => "들" + allomorph nf "들"
} ;
--------------------------------------------------------------------------------
-- Postpositions