summaryrefslogtreecommitdiff
path: root/next-lib/src/italian
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2009-03-11 16:08:55 +0000
committeraarne <aarne@cs.chalmers.se>2009-03-11 16:08:55 +0000
commit18c6ec5788d2ff9d4c7c5c0e0b82a652114ad206 (patch)
tree7af8cb145162dc2af399b2c50dce7be94e49d28b /next-lib/src/italian
parent84a1d54e827531993b3e91d571456be54378cb44 (diff)
Finnish attempto started
Diffstat (limited to 'next-lib/src/italian')
-rw-r--r--next-lib/src/italian/MakeStructuralIta.gf16
1 files changed, 16 insertions, 0 deletions
diff --git a/next-lib/src/italian/MakeStructuralIta.gf b/next-lib/src/italian/MakeStructuralIta.gf
new file mode 100644
index 000000000..4f75b3e7d
--- /dev/null
+++ b/next-lib/src/italian/MakeStructuralIta.gf
@@ -0,0 +1,16 @@
+--# -path=.:../romance:../common:../abstract
+
+resource MakeStructuralIta = open CatIta, ParadigmsIta, MorphoIta, Prelude in {
+
+oper
+ mkConj : Str -> Str -> Number -> Conj = \x,y,n ->
+ {s1 = x ; s2 = y ; n = n ; lock_Conj = <>} ;
+ mkSubj : Str -> Subj = \x ->
+ {s = x ; m = Indic ; lock_Subj = <>} ;
+ mkSubjSubj : Str -> Subj = \x ->
+ {s = x ; m = Conjunct ; lock_Subj = <>} ;
+
+ mkIQuant : Str -> IQuant = \s ->
+ {s = \\_,_,c => prepCase c ++ s ; lock_IQuant = <>} ;
+
+}