mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-08 06:36:32 -06:00
28 lines
684 B
Plaintext
28 lines
684 B
Plaintext
abstract ExtraEngAbs = Extra - [ProDrop] ** {
|
|
|
|
-- uncontracted negations; contracted are the default
|
|
fun
|
|
UncNegCl : Temp -> Pol -> Cl -> S ;
|
|
UncNegQCl : Temp -> Pol -> QCl -> QS ;
|
|
UncNegRCl : Temp -> Pol -> RCl -> RS ;
|
|
|
|
UncNegImpSg : Pol -> Imp -> Utt; -- do not help yourself
|
|
UncNegImpPl : Pol -> Imp -> Utt; -- do not help yourselves
|
|
|
|
-- freely compounded nouns
|
|
|
|
CompoundCN : CN -> CN -> CN ; -- rock album
|
|
|
|
that_RP : RP ; -- "that" as a relational pronoun (IdRP is "which" / "who")
|
|
|
|
each_Det : Det ;
|
|
|
|
-- infinitive without to
|
|
|
|
UttVPShort : VP -> Utt ;
|
|
|
|
-- emphasizing "do", e.g. "John does walk"
|
|
|
|
do_VV : VV ;
|
|
}
|