1
0
forked from GitHub/gf-core

constructor PositAdAAdj in Adverb, for most langs

This commit is contained in:
aarne
2010-11-19 16:49:30 +00:00
parent 48a327ddee
commit 94d818c60a
9 changed files with 23 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ abstract Adjective = Cat ** {
AdvAP : AP -> Adv -> AP ; -- warm by nature
-- The formation of adverbs from adjective (e.g. "quickly") is covered
-- in [Adverb Adverb.html].
-- The formation of adverbs from adjectives (e.g. "quickly") is covered
-- in [Adverb Adverb.html]; the same concerns adadjectives (e.g. "extremely").
}

View File

@@ -20,6 +20,10 @@ abstract Adverb = Cat ** {
AdAdv : AdA -> Adv -> Adv ; -- very quickly
-- Like adverbs, adadjectives can be produced by adjectives.
PositAdAAdj : A -> AdA ; -- extremely
-- Subordinate clauses can function as adverbs.
SubjS : Subj -> S -> Adv ; -- when she sleeps
@@ -28,5 +32,4 @@ abstract Adverb = Cat ** {
AdnCAdv : CAdv -> AdN ; -- less (than five)
}