mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 21:19:31 -06:00
23 lines
848 B
Plaintext
23 lines
848 B
Plaintext
concrete SentencesFin of Sentences = NumeralFin ** SentencesI -
|
|
[Is, NameNN, ObjMass,
|
|
IFemale, YouFamFemale, YouPolFemale, IMale, YouFamMale, YouPolMale
|
|
] with
|
|
(Syntax = SyntaxFin),
|
|
(Symbolic = SymbolicFin),
|
|
(Lexicon = LexiconFin) ** open SyntaxFin, ExtraFin, (P = ParadigmsFin), (V = VerbFin) in {
|
|
|
|
lin
|
|
Is item prop = mkCl item (V.UseComp (CompPartAP prop)) ; -- pizza on herkullista
|
|
NameNN = mkNP (P.mkPN (P.mkN "NN" "NN:iä")) ;
|
|
|
|
IMale, IFemale =
|
|
{name = mkNP (ProDrop i_Pron) ; isPron = True ; poss = ProDropPoss i_Pron} ;
|
|
YouFamMale, YouFamFemale =
|
|
{name = mkNP (ProDrop youSg_Pron) ; isPron = True ; poss = ProDropPoss youSg_Pron} ;
|
|
YouPolMale, YouPolFemale =
|
|
{name = mkNP (ProDrop youPol_Pron) ; isPron = True ; poss = ProDropPoss youPol_Pron} ;
|
|
|
|
ObjMass = PartCN ;
|
|
|
|
}
|