mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-16 02:20:15 -06:00
31 lines
796 B
Plaintext
31 lines
796 B
Plaintext
concrete PhraseKor of Phrase = CatKor ** open Prelude, ResKor in {
|
|
|
|
lin
|
|
PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
|
|
|
|
UttS s = {s = s.s ! Statement linStyle} ;
|
|
UttQS qs = {s = qs.s ! linStyle} ;
|
|
UttIAdv iadv = iadv ;
|
|
UttAdv adv = adv ;
|
|
UttInterj i = i ;
|
|
|
|
UttImpSg pol imp = {s = imp.s ! pol.p} ;
|
|
UttImpPl,
|
|
UttImpPol = UttImpSg ;
|
|
|
|
UttIP ip = {s = ip.s ! Bare} ;
|
|
|
|
UttNP np = {s = np.s ! Bare} ;
|
|
UttVP vp = {s = linVP (VF Plain Pos) vp} ;
|
|
UttCN cn = {s = cn.rs ++ cn.s ! Bare} ;
|
|
UttCard n = {s = n.s ! NK ! Indep} ;
|
|
UttAP ap = {s = ap.compar ++ ap.s ! VF Plain Pos} ;
|
|
|
|
NoPConj = {s = []} ;
|
|
-- PConjConj conj = {s = conj.s1 ++ conj.s2 ! …} ;
|
|
|
|
NoVoc = {s = []} ;
|
|
-- VocNP np = { s = "," ++ np.s ! … } ; -}
|
|
|
|
}
|