1
0
forked from GitHub/gf-rgl

(Hun) Add field for NPs whether it's definite

This commit is contained in:
Inari Listenmaa
2020-04-13 17:30:07 +02:00
parent 8efb9d5621
commit 9da533c809
3 changed files with 13 additions and 9 deletions
+2 -2
View File
@@ -17,14 +17,14 @@ oper
NounPhrase : Type = {
s : Case => Str ;
agr : Person*Number ;
isPron : Bool ;
objdef : ObjDef ;
empty : Str ; -- standard trick for pro-drop
} ;
emptyNP : NounPhrase = {
s = \\_ => [] ;
agr = <P3,Sg> ;
isPron = False ;
objdef = Indef ;
empty = [] ;
} ;