mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-21 18:59:32 -06:00
26 lines
759 B
Plaintext
26 lines
759 B
Plaintext
concrete PhraseBul of Phrase = CatBul ** open Prelude, ResBul in {
|
|
flags coding=cp1251 ;
|
|
|
|
|
|
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 ! pol.p ! GSg Masc} ;
|
|
UttImpPl pol imp = {s = pol.s ++ imp.s ! pol.p ! GPl} ;
|
|
UttImpPol pol imp = {s = pol.s ++ imp.s ! pol.p ! GPl} ;
|
|
|
|
UttIP ip = {s = ip.s ! RSubj ! QDir} ;
|
|
UttIAdv iadv = {s = iadv.s ! QDir} ;
|
|
UttNP np = {s = np.s ! RSubj} ;
|
|
UttVP vp = {s = daComplex vp ! Perf ! agrP3 (GSg Neut)} ;
|
|
UttAdv adv = adv ;
|
|
|
|
NoPConj = {s = []} ;
|
|
PConjConj conj = {s = conj.s ++ linCoord!conj.conj} ;
|
|
|
|
NoVoc = {s = []} ;
|
|
VocNP np = {s = "," ++ np.s ! RVoc} ;
|
|
}
|