mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-26 13:02:50 -06:00
54 lines
979 B
Plaintext
54 lines
979 B
Plaintext
interface DiffScand = open CommonScand, Prelude in {
|
|
|
|
-- Parameters.
|
|
|
|
param
|
|
Gender ;
|
|
|
|
oper
|
|
neutrum, utrum : Gender ;
|
|
|
|
gennum : Gender -> Number -> GenNum ;
|
|
|
|
-- This is the form of the noun in "det stora berget"/"det store berg".
|
|
|
|
detDef : Species ;
|
|
|
|
-- Strings.
|
|
|
|
conjThat : Str ;
|
|
conjThan : Str ;
|
|
conjAnd : Str ;
|
|
infMark : Str ;
|
|
|
|
subjIf : Str ;
|
|
|
|
artIndef : Gender => Str ;
|
|
|
|
verbHave : {s : VForm => Str ; vtype : VType} ;
|
|
verbBe : {s : VForm => Str ; vtype : VType} ;
|
|
|
|
verbBecome : {s : VForm => Str ; vtype : VType} ;
|
|
|
|
auxFut : Str ;
|
|
auxCond : Str ;
|
|
|
|
negation : Polarity => Str ;
|
|
|
|
-- For determiners; mostly two-valued even in Norwegian.
|
|
|
|
genderForms : (x1,x2 : Str) -> Gender => Str ;
|
|
|
|
-- The forms of a relative pronoun ("som", "vars", "i vilken").
|
|
|
|
relPron : GenNum => RCase => Str ;
|
|
|
|
-- Pronoun "sådan" used in $Relative.RelCl$.
|
|
|
|
pronSuch : GenNum => Str ;
|
|
|
|
reflPron : Agr -> Str ;
|
|
|
|
}
|
|
|