summaryrefslogtreecommitdiff
path: root/next-lib/src/english/AdjectiveEng.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2008-10-03 20:42:09 +0000
committeraarne <aarne@cs.chalmers.se>2008-10-03 20:42:09 +0000
commit24207d40e9cb56173de22d9a424975f0da0bc416 (patch)
tree2c221dc4e6f9f7a4d665fe118e0cda12d3ea7290 /next-lib/src/english/AdjectiveEng.gf
parent27de3c0e7b13a4674cf5829ccbb00b118e916ae8 (diff)
extended AP with Ord and compar in 1.5
Diffstat (limited to 'next-lib/src/english/AdjectiveEng.gf')
-rw-r--r--next-lib/src/english/AdjectiveEng.gf15
1 files changed, 13 insertions, 2 deletions
diff --git a/next-lib/src/english/AdjectiveEng.gf b/next-lib/src/english/AdjectiveEng.gf
index 19dd5dddc..2306f5d9c 100644
--- a/next-lib/src/english/AdjectiveEng.gf
+++ b/next-lib/src/english/AdjectiveEng.gf
@@ -10,8 +10,16 @@ concrete AdjectiveEng of Adjective = CatEng ** open ResEng, Prelude in {
s = \\_ => a.s ! AAdj Compar ++ "than" ++ np.s ! Nom ;
isPre = False
} ;
+ UseComparA a = {
+ s = \\_ => a.s ! AAdj Compar ;
+ isPre = True
+ } ;
+
+ AdjOrd ord = {
+ s = \\_ => ord.s ;
+ isPre = True
+ } ;
--- $SuperlA$ belongs to determiner syntax in $Noun$.
ComplA2 a np = {
s = \\_ => a.s ! AAdj Posit ++ a.c2 ++ np.s ! Acc ;
@@ -33,6 +41,9 @@ concrete AdjectiveEng of Adjective = CatEng ** open ResEng, Prelude in {
isPre = ap.isPre
} ;
- UseA2 a = a ;
+ UseA2 a = {
+ s = \\_ => a.s ! AAdj Posit ;
+ isPre = True
+ } ;
}