mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-24 18:46:28 -06:00
29 lines
962 B
Plaintext
Executable File
29 lines
962 B
Plaintext
Executable File
concrete PhraseZul of Phrase = CatZul ** open Prelude, ResZul in {
|
|
|
|
lin
|
|
PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
|
|
--
|
|
UttS sent = { s = sent.s } ;
|
|
UttQS sent = { s = sent.qword_pre ++ sent.s ++ sent.qword_post } ;
|
|
UttImpSg pol imp = { s = pol.s ++ imp.s!pol.p } ;
|
|
-- UttImpPl pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Pl False} ;
|
|
-- UttImpPol pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Sg True} ;
|
|
|
|
-- UttIP ip = {s = ip.s ! npNom} ; --- Acc also
|
|
-- UttIAdv iadv = iadv ;
|
|
-- UttNP np = {s = np.s ! npNom} ;
|
|
-- UttVP vp = {s = infVP VVInf vp False Simul CPos (agrP3 Sg)} ;
|
|
-- UttAdv adv = adv ;
|
|
-- UttCN n = {s = n.s ! Sg ! Nom} ;
|
|
-- UttCard n = {s = n.s ! False ! Nom} ;
|
|
-- UttAP ap = {s = ap.s ! agrP3 Sg} ;
|
|
-- UttInterj i = i ;
|
|
|
|
NoPConj = {s = []} ;
|
|
-- PConjConj conj = {s = conj.s2} ; ---
|
|
|
|
NoVoc = {s = []} ;
|
|
-- VocNP np = {s = frontComma ++ np.s ! npNom} ;
|
|
|
|
}
|