mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-03 00:02:50 -06:00
28 lines
905 B
Plaintext
28 lines
905 B
Plaintext
concrete PhrasePnb of Phrase = CatPnb ** open Prelude, ResPnb 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 ! Dir} ; --- Acc also
|
|
UttIAdv iadv = iadv ;
|
|
UttNP np = {s = np.s ! NPC Dir} ;
|
|
UttVP vp = {s = infVP False vp (agrP3 Masc Sg)} ;
|
|
UttAdv adv = {s = adv.s ! Masc } ;
|
|
UttCN cn = {s = cn.s ! Sg ! Dir};
|
|
UttCard n = n ;
|
|
UttAP ap = {s = ap.s ! Sg ! Masc ! Dir} ;
|
|
|
|
NoPConj = {s = []} ;
|
|
PConjConj conj = {s = conj.s2} ; ---
|
|
|
|
NoVoc = {s = []} ;
|
|
VocNP np = {s = np.s ! NPC Voc} ;
|
|
|
|
}
|