mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 19:42:50 -06:00
31 lines
818 B
Plaintext
31 lines
818 B
Plaintext
concrete IdiomSwe of Idiom = CatSwe **
|
|
open MorphoSwe, ParadigmsSwe, IrregSwe, Prelude in {
|
|
|
|
flags optimize=all_subs ;
|
|
|
|
lin
|
|
ImpersCl vp = mkClause "det" (agrP3 neutrum Sg) vp ;
|
|
GenericCl vp = mkClause "man" (agrP3 neutrum Sg) vp ;
|
|
ExistNP np =
|
|
mkClause "det" (agrP3 neutrum Sg) (insertObj
|
|
(\\_ => np.s ! accusative) (predV (depV finna_V))) ;
|
|
|
|
ExistIP ip = {
|
|
s = \\t,a,p =>
|
|
let
|
|
cls =
|
|
(mkClause "det" (agrP3 neutrum Sg) (predV (depV finna_V))).s ! t ! a ! p ;
|
|
who = ip.s ! accusative
|
|
in table {
|
|
QDir => who ++ cls ! Inv ;
|
|
QIndir => who ++ cls ! Sub
|
|
}
|
|
} ;
|
|
|
|
|
|
ProgrVP vp =
|
|
insertObj (\\a => "att" ++ infVP vp a) (predV (partV hålla_V "på")) ;
|
|
|
|
}
|
|
|