mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
Added some determiners to Constructors.
This commit is contained in:
@@ -132,6 +132,12 @@ incomplete resource Constructors = open Grammar in {
|
||||
mkDet : Pron -> Det -- my (house)
|
||||
} ;
|
||||
|
||||
def_Det : Det ; -- the (man)
|
||||
indef_Det : Det ; -- a (man)
|
||||
mass_Det : Det ; -- (water)
|
||||
|
||||
-- More determiners are available in the Structural module
|
||||
|
||||
|
||||
--2 Numerals - cardinal and ordinal
|
||||
|
||||
@@ -370,6 +376,12 @@ incomplete resource Constructors = open Grammar in {
|
||||
= \p -> DetSg (SgQuant (PossPron p)) NoOrd
|
||||
} ;
|
||||
|
||||
|
||||
def_Det : Det = DetSg (SgQuant DefArt) NoOrd ; -- the (man)
|
||||
indef_Det : Det = DetSg (SgQuant IndefArt) NoOrd ; -- a (man)
|
||||
mass_Det : Det = DetSg MassDet NoOrd; -- (water)
|
||||
|
||||
|
||||
mkNum = overload {
|
||||
mkNum : Num -- [no num]
|
||||
= NoNum ;
|
||||
|
||||
Reference in New Issue
Block a user