mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 13:29:32 -06:00
30 lines
653 B
Plaintext
30 lines
653 B
Plaintext
-- 15.58
|
|
|
|
abstract Attempto = {
|
|
|
|
flags startcat = ACEText ;
|
|
|
|
cat
|
|
ACEText ;
|
|
Query ;
|
|
Command ;
|
|
fun
|
|
ASpecification : Specification -> ACEText ;
|
|
AQuery : Query -> ACEText ;
|
|
ACommand : Command -> ACEText ;
|
|
cat
|
|
PropositionOrSentenceCoord ;
|
|
TopicalisedQuestion ;
|
|
fun
|
|
QQuery : PropositionOrSentenceCoord -> Query -> Query ;
|
|
QTopicalizer : TopicalisedQuestion -> Query ;
|
|
cat
|
|
ExistentialQuestionTopic ;
|
|
SentenceCoord ;
|
|
fun
|
|
TExistential : ExistentialQuestionTopic -> SentenceCoord -> TopicalisedQuestion ;
|
|
TUniversal : UniversalTopic -> TopicalisedQuestion -> TopicalisedQuestion ;
|
|
TQuestion : Question -> TopicalisedQuestion ;
|
|
|
|
}
|