mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-16 08:19:31 -06:00
60 lines
1.2 KiB
Plaintext
60 lines
1.2 KiB
Plaintext
concrete AdjectiveHun of Adjective = CatHun ** open ResHun, Prelude in
|
|
{
|
|
--{
|
|
--
|
|
-- lin
|
|
--
|
|
-- PositA a = {
|
|
-- s = \\_ => a.s ! AAdj Posit Nom ;
|
|
-- isPre = True
|
|
-- } ;
|
|
-- ComparA a np = {
|
|
-- s = \\_ => a.s ! AAdj Compar Nom ++ "than" ++ np.s ! npNom ;
|
|
-- isPre = False
|
|
-- } ;
|
|
-- UseComparA a = {
|
|
-- s = \\_ => a.s ! AAdj Compar Nom ;
|
|
-- isPre = True
|
|
-- } ;
|
|
--
|
|
-- AdjOrd ord = {
|
|
-- s = \\_ => ord.s ! Nom ;
|
|
-- isPre = True
|
|
-- } ;
|
|
--
|
|
-- CAdvAP ad ap np = {
|
|
-- s = \\a => ad.s ++ ap.s ! a ++ ad.p ++ np.s ! npNom ;
|
|
-- isPre = False
|
|
-- } ;
|
|
--
|
|
-- ComplA2 a np = {
|
|
-- s = \\_ => a.s ! AAdj Posit Nom ++ a.c2 ++ np.s ! NPAcc ;
|
|
-- isPre = False
|
|
-- } ;
|
|
--
|
|
-- ReflA2 a = {
|
|
-- s = \\ag => a.s ! AAdj Posit Nom ++ a.c2 ++ reflPron ! ag ;
|
|
-- isPre = False
|
|
-- } ;
|
|
--
|
|
-- SentAP ap sc = {
|
|
-- s = \\a => ap.s ! a ++ sc.s ;
|
|
-- isPre = False
|
|
-- } ;
|
|
--
|
|
-- AdAP ada ap = {
|
|
-- s = \\a => ada.s ++ ap.s ! a ;
|
|
-- isPre = ap.isPre
|
|
-- } ;
|
|
--
|
|
-- UseA2 a = {
|
|
-- s = \\_ => a.s ! AAdj Posit Nom ;
|
|
-- isPre = True
|
|
-- } ;
|
|
--
|
|
-- AdvAP ap adv = {s = \\a => ap.s ! a ++ adv.s ; isPre = False} ;
|
|
--
|
|
--}
|
|
|
|
}
|