some NP constants

This commit is contained in:
krasimir
2008-02-27 14:09:44 +00:00
parent b799e7a41b
commit 5960838e98
2 changed files with 21 additions and 16 deletions

View File

@@ -538,6 +538,19 @@ resource ResBul = ParamX ** open Prelude in {
p = p
}
} ;
mkNP : Str -> GenNum -> Person -> {s : Role => Str; a : Agr} =
\s,gn,p -> {
s = table {
RSubj => s ;
RObj Acc => s ;
RObj Dat => "íà" ++ s
} ;
a = {
gn = gn ;
p = p
}
} ;
Preposition : Type = {s : Str; c : Case};