mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
22 lines
642 B
Plaintext
22 lines
642 B
Plaintext
concrete SentencesFre of Sentences = NumeralFre ** SentencesI - [
|
|
QProp,
|
|
IFemale, YouFamFemale, YouPolFemale
|
|
]
|
|
with
|
|
(Syntax = SyntaxFre),
|
|
(Symbolic = SymbolicFre),
|
|
(Lexicon = LexiconFre) **
|
|
open SyntaxFre, ExtraFre, Prelude in {
|
|
|
|
lin
|
|
QProp a =
|
|
lin QS {s = \\_ => (EstcequeS (mkS a)).s} ;
|
|
IFemale =
|
|
{name = mkNP i8fem_Pron ; isPron = True ; poss = mkQuant i_Pron} ;
|
|
YouFamFemale =
|
|
{name = mkNP youSg8fem_Pron ; isPron = True ; poss = mkQuant youSg_Pron} ;
|
|
YouPolFemale =
|
|
{name = mkNP youPol8fem_Pron ; isPron = True ; poss = mkQuant youPol_Pron};
|
|
|
|
}
|