mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-21 10:49:33 -06:00
47 lines
748 B
Plaintext
47 lines
748 B
Plaintext
interface DiffRomance = open CommonRomance, Prelude in {
|
|
|
|
|
|
--2 Constants whose definitions depend on language.
|
|
|
|
-- Prepositions that fuse with the article vary.
|
|
|
|
param
|
|
|
|
Prep ;
|
|
VType ;
|
|
|
|
oper
|
|
|
|
dative : Case ;
|
|
genitive : Case ;
|
|
|
|
prepCase : Case -> Str ;
|
|
|
|
partitive : Gender -> Case -> Str ;
|
|
|
|
reflPron : Number -> Person -> Str ;
|
|
|
|
artDef : Gender -> Number -> Case -> Str ;
|
|
artIndef : Gender -> Number -> Case -> Str ;
|
|
|
|
auxVerb : VType -> (VF => Str) ;
|
|
negation : Polarity => (Str * Str) ;
|
|
copula : Verb ;
|
|
|
|
partAgr : VType -> VPAgr ;
|
|
|
|
conjThan : Str ;
|
|
|
|
clitInf : Str -> Str -> Str ;
|
|
|
|
-- These needed above.
|
|
|
|
param
|
|
Case = Nom | Acc | CPrep Prep ;
|
|
|
|
oper
|
|
Verb = {s : VF => Str ; vtyp : VType} ;
|
|
|
|
}
|
|
|