1
0
forked from GitHub/gf-core

ProDrop in ExtraPol

This commit is contained in:
aarne
2010-12-08 14:01:12 +00:00
parent d7f4f66835
commit 08fc615bba
3 changed files with 16 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
--# -path=.:../abstract:../common:prelude
concrete AllPol of AllPolAbs =
LangPol
LangPol,
ExtraPol
** {} ;

View File

@@ -1,5 +1,6 @@
--# -path=.:../abstract:../common:prelude
abstract AllPolAbs =
Lang
Lang,
ExtraPolAbs
** {} ;

View File

@@ -1,3 +1,12 @@
--concrete ExtraPol of ExtraPolAbs = CatPol ** {
--
-- }
concrete ExtraPol of ExtraPolAbs = CatPol ** open ResPol in {
lin ProDrop p = {
nom = [] ;
voc = p.voc ;
dep = p.dep ;
sp = p.sp ;
n = p.n ;
p = p.p ;
g = p.g ;
} ;
}