articles added to Browse

This commit is contained in:
aarne
2009-12-03 09:27:57 +00:00
parent bb41907a4d
commit 5c678ab686
3 changed files with 41 additions and 2 deletions

View File

@@ -429,6 +429,13 @@ incomplete resource Constructors = open Grammar in {
mkDet : Pron -> Num -> Det -- 11. my (houses) --# notminimal
} ; --# notminimal
the_Det : Det ; -- the (house)
a_Det : Det ; -- a (house)
thePl_Det : Det ; -- the (houses)
aSg_Det : Det ; -- a (house)
aPl_Det : Det ; -- (houses)
--3 Quant, quantifiers --# notminimal
-- There are definite and indefinite articles.
@@ -1718,6 +1725,16 @@ incomplete resource Constructors = open Grammar in {
those_QuantPl : QuantPl ; -- 5. those --# notminimal
-} --# notminimal
-- new things
the_Det : Det = theSg_Det ; -- the (house)
a_Det : Det = aSg_Det ; -- a (house)
theSg_Det : Det = DetQuant DefArt NumSg ; -- the (houses)
thePl_Det : Det = DetQuant DefArt NumPl ; -- the (houses)
aSg_Det : Det = DetQuant IndefArt NumSg ; -- a (house)
aPl_Det : Det = DetQuant IndefArt NumPl ; -- (houses)
-- export needed, since not in Cat
ListAdv : Type = Grammar.ListAdv ; --# notminimal