mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 11:42:49 -06:00
18 lines
324 B
Plaintext
18 lines
324 B
Plaintext
abstract Question = Cat, Sentence ** {
|
|
|
|
fun
|
|
|
|
QuestCl : Cl -> QCl ;
|
|
QuestVP : IP -> VP -> QCl ;
|
|
QuestSlash : IP -> Slash -> QCl ;
|
|
QuestIAdv : IAdv -> Cl -> QCl ;
|
|
|
|
PrepIP : Prep -> IP -> IAdv ;
|
|
FunIP : N2 -> IP -> IP ;
|
|
AdvIP : IP -> Adv -> IP ;
|
|
|
|
IDetCN : IDet -> Num -> IP ;
|
|
|
|
}
|
|
|