1
0
forked from GitHub/gf-core
Files
gf-core/lib/src/mongolian/RelativeMon.gf
hallgren 7c1be91839 Fix -path directives for Mongolian
+ Remove references to alltenses.
+ Remove references to ../../prelude
+ Add missing reference to ../common in mongolian/SymbolMon.gf
2015-03-13 14:41:30 +00:00

36 lines
714 B
Plaintext

--# -path=.:../abstract:../common:../prelude
concrete RelativeMon of Relative = CatMon ** open ResMon, MorphoMon, Prelude in {
flags optimize=all_subs ; coding=utf8 ;
lin
RelCl cl = {
s = \\t,ant,pol,_ => cl.s ! t ! ant ! pol ! Part Rel ;
existSubject = True
} ;
RelVP rp vp = {
s = \\t,ant,pol,_ =>
let
cl = (mkClause (\\_ => []) Sg vp.vt Acc vp)
in
cl.s ! t ! ant ! pol ! Part Object ;
existSubject = False
} ;
RelSlash rp slash = {
s = \\t,ant,pol,_ => slash.s ! t ! ant ! pol ! Part Object ++ slash.c2.s ;
existSubject = False
} ;
IdRP = {s = []} ;
FunRP p np rp = {
s = np.s ! Nom ++ "нь"
} ;
}