mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-15 15:59:32 -06:00
21 lines
560 B
Plaintext
21 lines
560 B
Plaintext
concrete SentencesCat of Sentences = NumeralCat ** SentencesI - [
|
|
IFemale, YouFamFemale, YouPolFemale
|
|
]
|
|
with
|
|
(Syntax = SyntaxCat),
|
|
(Symbolic = SymbolicCat),
|
|
(Lexicon = LexiconCat) **
|
|
open SyntaxCat, ExtraCat, Prelude in {
|
|
|
|
lin
|
|
IFemale =
|
|
{name = mkNP i8fem_Pron ; isPron = True ; poss = mkDet i_Pron} ;
|
|
YouFamFemale =
|
|
{name = mkNP youSg8fem_Pron ; isPron = True ; poss = mkDet youSg_Pron} ;
|
|
YouPolFemale =
|
|
{name = mkNP youPol8fem_Pron ; isPron = True ; poss = mkDet youPol_Pron};
|
|
|
|
}
|
|
|
|
|