mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 11:19:32 -06:00
45 lines
891 B
Plaintext
45 lines
891 B
Plaintext
concrete AdjectiveGer of Adjective = CatGer ** open ResGer, Prelude in {
|
|
|
|
flags optimize=all_subs ;
|
|
|
|
lin
|
|
|
|
PositA a = {
|
|
s = a.s ! Posit ;
|
|
isPre = True
|
|
} ;
|
|
ComparA a np = {
|
|
s = \\af => a.s ! Compar ! af ++ "als" ++ np.s ! Nom ;
|
|
isPre = True
|
|
} ;
|
|
|
|
-- $SuperlA$ belongs to determiner syntax in $Noun$.
|
|
|
|
ComplA2 a np = {
|
|
s = \\af => a.s ! Posit ! af ++ appPrep a.c2 np.s ;
|
|
isPre = True
|
|
} ;
|
|
|
|
-- ReflA2 a = {
|
|
-- s = \\ag => a.s ! AAdj Posit ++ a.c2 ++ reflPron ! ag ;
|
|
-- isPre = False
|
|
-- } ;
|
|
|
|
SentAP ap s = {
|
|
s = \\a => ap.s ! a ++ conjThat ++ s.s ! Sub ;
|
|
isPre = False
|
|
} ;
|
|
QuestAP ap qs = {
|
|
s = \\a => ap.s ! a ++ qs.s ! QIndir ;
|
|
isPre = False
|
|
} ;
|
|
|
|
AdAP ada ap = {
|
|
s = \\a => ada.s ++ ap.s ! a ;
|
|
isPre = ap.isPre
|
|
} ;
|
|
|
|
UseA2 a = a ;
|
|
|
|
}
|