mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 11:42:49 -06:00
44 lines
940 B
Plaintext
44 lines
940 B
Plaintext
incomplete concrete AdjectiveScand of Adjective =
|
|
CatScand ** open DiffScand, ResScand, Prelude in {
|
|
|
|
lin
|
|
|
|
PositA a = {
|
|
s = \\ap => a.s ! AF (APosit ap) Nom ;
|
|
isPre = True
|
|
} ;
|
|
ComparA a np = {
|
|
s = \\_ => a.s ! AF ACompar Nom ++ conjThan ++ np.s ! NPNom ;
|
|
isPre = False
|
|
} ;
|
|
|
|
---- $SuperlA$ belongs to determiner syntax in $Noun$.
|
|
--
|
|
-- ComplA2 a np = {
|
|
-- s = \\_ => a.s ! AAdj Posit ++ a.c2 ++ np.s ! Acc ;
|
|
-- isPre = False
|
|
-- } ;
|
|
--
|
|
-- 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 ! Inv ;
|
|
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 ;
|
|
|
|
}
|