summaryrefslogtreecommitdiff
path: root/next-lib/src/scandinavian/VerbScand.gf
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2009-06-22 15:39:08 +0000
committeraarne <aarne@chalmers.se>2009-06-22 15:39:08 +0000
commite89fdae2fa1626348d8025824a7469252fa85e42 (patch)
treec7d46bbd0494043b4bd6f917a25a7687517d0547 /next-lib/src/scandinavian/VerbScand.gf
parent3049b59b35b25381a7c6787444165c200d66e08b (diff)
next-lib renamed to lib, lib to old-lib
Diffstat (limited to 'next-lib/src/scandinavian/VerbScand.gf')
-rw-r--r--next-lib/src/scandinavian/VerbScand.gf69
1 files changed, 0 insertions, 69 deletions
diff --git a/next-lib/src/scandinavian/VerbScand.gf b/next-lib/src/scandinavian/VerbScand.gf
deleted file mode 100644
index 5ec40157c..000000000
--- a/next-lib/src/scandinavian/VerbScand.gf
+++ /dev/null
@@ -1,69 +0,0 @@
-incomplete concrete VerbScand of Verb = CatScand ** open CommonScand, ResScand in {
-
- flags optimize=all_subs ;
-
- lin
- UseV = predV ;
-
- SlashV2a v = predV v ** {n3 = \\_ => [] ; c2 = v.c2} ;
-
- Slash2V3 v np =
- insertObj (\\_ => v.c2.s ++ np.s ! accusative) (predV v) **
- {n3 = \\_ => [] ; c2 = v.c3} ; -- to preserve the order of args
- Slash3V3 v np = predV v ** {
- n3 = \\_ => v.c3.s ++ np.s ! accusative ;
- c2 = v.c2
- } ;
-
- ComplVV v vp = insertObj (\\a => v.c2.s ++ infVP vp a) (predV v) ;
- ComplVS v s = insertObj (\\_ => conjThat ++ s.s ! Sub) (predV v) ;
- ComplVQ v q = insertObj (\\_ => q.s ! QIndir) (predV v) ;
- ComplVA v ap = insertObj (\\a => ap.s ! agrAdj a.gn DIndef) (predV v) ;
-
- SlashV2V v vp = predV v ** {
- n3 = \\a => v.c3.s ++ infVP vp a ;
- c2 = v.c2
- } ;
- SlashV2S v s = predV v ** {
- n3 = \\_ => conjThat ++ s.s ! Sub ;
- c2 = v.c2
- } ;
- SlashV2Q v q = predV v ** {
- n3 = \\_ => q.s ! QIndir ;
- c2 = v.c2
- } ;
- SlashV2A v ap = predV v ** {
- n3 = \\a => ap.s ! agrAdj a.gn DIndef ;
- c2 = v.c2
- } ;
-
- ComplSlash vp np =
- insertObj
- (\\_ => vp.c2.s ++ np.s ! accusative ++ vp.n3 ! np.a) vp ;
-
- SlashVV v vp =
- insertObj (\\a => v.c2.s ++ infVP vp a) (predV v) ** {n3 = vp.n3 ; c2 = vp.c2} ;
-
- SlashV2VNP v np vp =
- insertObj
- (\\a => v.c2.s ++ np.s ! accusative ++ v.c3.s ++ infVP vp a) (predV v)
- ** {n3 = vp.n3 ; c2 = v.c2} ;
-
- UseComp comp = insertObj (\\a => comp.s ! agrAdj a.gn DIndef) (predV verbBe) ;
-
- CompAP ap = ap ;
- CompNP np = {s = \\_ => np.s ! accusative} ;
- CompAdv a = {s = \\_ => a.s} ;
-
- AdvVP vp adv = insertAdv adv.s vp ;
- AdVVP adv vp = insertAdV adv.s vp ;
-
-
- ReflVP vp = insertObj (\\a => vp.c2.s ++ reflPron a ++ vp.n3 ! a) vp ;
-
- PassV2 v =
- insertObj
- (\\a => v.s ! VI (VPtPret (agrAdj a.gn DIndef) Nom))
- (predV verbBecome) ;
-
-}