summaryrefslogtreecommitdiff
path: root/old-lib/resource/romance/PhraseRomance.gf
diff options
context:
space:
mode:
Diffstat (limited to 'old-lib/resource/romance/PhraseRomance.gf')
-rw-r--r--old-lib/resource/romance/PhraseRomance.gf27
1 files changed, 27 insertions, 0 deletions
diff --git a/old-lib/resource/romance/PhraseRomance.gf b/old-lib/resource/romance/PhraseRomance.gf
new file mode 100644
index 000000000..4de6b28e5
--- /dev/null
+++ b/old-lib/resource/romance/PhraseRomance.gf
@@ -0,0 +1,27 @@
+incomplete concrete PhraseRomance of Phrase =
+ CatRomance ** open CommonRomance, ResRomance, Prelude in {
+
+ flags optimize = all_subs ;
+
+ lin
+ PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
+
+ UttS s = {s = s.s ! Indic} ;
+ UttQS qs = {s = qs.s ! QDir} ;
+ UttImpSg pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Sg False ! Fem} ;
+ UttImpPl pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Pl False ! Fem} ;
+ UttImpPol pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Sg True ! Fem} ;
+
+ UttIP ip = {s = ip.s ! Nom} ; --- Acc also
+ UttIAdv iadv = iadv ;
+ UttNP np = {s = np.s ! Ton Nom} ;
+ UttVP vp = {s = infVP vp (agrP3 Fem Sg)} ; --- Agr
+ UttAdv adv = adv ;
+
+ NoPConj = {s = []} ;
+ PConjConj conj = {s = conj.s2} ;
+
+ NoVoc = {s = []} ;
+ VocNP np = {s = "," ++ np.s ! Ton Nom} ;
+
+}