mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
--# -path=.:../../lib/src/chunk:../../lib/src/translator:../phrasebook/gfos
|
|
|
|
concrete AppFre of App =
|
|
|
|
TranslateFre - [
|
|
-- Verb
|
|
ComplVS, ComplVQ, ComplVA,
|
|
Slash2V3, Slash3V3, SlashV2V, SlashV2S, SlashV2Q, SlashV2A,
|
|
SlashVV, SlashV2VNP,
|
|
PassVP, ReflVP,
|
|
AdvVPSlash, AdVVPSlash, VPSlashPrep,
|
|
-- Sentence
|
|
PredSCVP,
|
|
AdvSlash, SlashPrep, SlashVS,
|
|
EmbedS, EmbedQS, EmbedVP, RelS,
|
|
-- Question
|
|
ComplSlashIP,AdvQVP,AddAdvQVP,QuestQVP,
|
|
-- Idiom
|
|
CleftNP, CleftAdv,
|
|
ExistIP,
|
|
ExistNPAdv, ExistIPAdv,
|
|
ImpP3,
|
|
SelfAdvVP, SelfAdVVP, SelfNP
|
|
|
|
-- Construction
|
|
-- Extensions
|
|
]
|
|
|
|
|
|
,PhrasebookFre - [PSentence, PQuestion, PGreetingMale, PGreetingFemale, GObjectPlease, open_A, closed_A]
|
|
|
|
** open ParadigmsFre, SyntaxFre, Prelude in {
|
|
|
|
flags
|
|
literal=Symb ;
|
|
|
|
lin
|
|
PSentence, PQuestion = \s -> lin Text (mkUtt s) ;
|
|
PGreetingMale, PGreetingFemale = \s -> lin Text s ;
|
|
GObjectPlease o = lin Text (mkUtt o) ;
|
|
|
|
PhrasePhr p = {s = "+" ++ p.s} | p ;
|
|
Phrase_Chunk p = p ;
|
|
|
|
}
|