mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-18 17:29:32 -06:00
25 lines
742 B
Plaintext
25 lines
742 B
Plaintext
concrete PhraseEng of Phrase = CatEng ** open Prelude, ResEng in {
|
|
|
|
lin
|
|
PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
|
|
|
|
UttS s = s ;
|
|
UttQS qs = {s = qs.s ! QDir} ;
|
|
UttImpSg pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg False} ;
|
|
UttImpPl pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Pl False} ;
|
|
UttImpPol pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg True} ;
|
|
|
|
UttIP ip = {s = ip.s ! Nom} ; --- Acc also
|
|
UttIAdv iadv = iadv ;
|
|
UttNP np = {s = np.s ! Nom} ;
|
|
UttVP vp = {s = infVP False vp (agrP3 Sg)} ;
|
|
UttAdv adv = adv ;
|
|
|
|
NoPConj = {s = []} ;
|
|
PConjConj conj = conj ;
|
|
|
|
NoVoc = {s = []} ;
|
|
VocNP np = {s = "," ++ np.s ! Nom} ;
|
|
|
|
}
|