mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 19:22:50 -06:00
17 lines
307 B
Plaintext
17 lines
307 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 ;
|
|
AdvIP : IP -> Adv -> IP ;
|
|
|
|
IDetCN : IDet -> Num -> Ord -> CN -> IP ;
|
|
|
|
}
|
|
|