mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 21:39:32 -06:00
16 lines
292 B
Plaintext
16 lines
292 B
Plaintext
abstract ExtEngAbs = Cat ** {
|
|
|
|
cat
|
|
Aux ; -- auxiliary verbs: "can", "must", etc
|
|
|
|
-- Notice that $Aux$ cannot form $VP$ with infinitive, imperative, etc.
|
|
|
|
fun
|
|
PredAux : NP -> Aux -> VP -> Cl ;
|
|
QuestAux : IP -> Aux -> VP -> QCl ;
|
|
|
|
can_Aux : Aux ;
|
|
must_Aux : Aux ;
|
|
|
|
}
|