1
0
forked from GitHub/gf-rgl
This commit is contained in:
Thomas Hallgren
2017-08-20 18:40:03 +02:00
3 changed files with 33 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ lin
GenRP = variants {} ; -- Num -> CN -> RP ; -- whose car GenRP = variants {} ; -- Num -> CN -> RP ; -- whose car
GenModNP num np cn = DetCN (DetQuant DefArt num) (AdvCN cn (PrepNP possess_Prep np)) ; -- this man's car(s) ; DEFAULT the car of this man GenModNP num np cn = DetCN (DetQuant DefArt num) (AdvCN cn (PrepNP possess_Prep np)) ; -- this man's car(s) ; DEFAULT the car of this man
GenModIP = variants {} ; -- Num -> IP -> CN -> IP ; -- whose car(s) GenModIP = variants {} ; -- Num -> IP -> CN -> IP ; -- whose car(s)
CompBareCN cn = CompNP (CompCN cn) ; -- (est) professeur ; DEFAULT is a teacher CompBareCN cn = CompCN cn ; -- (est) professeur ; DEFAULT is a teacher
StrandQuestSlash = QuestSlash ; -- whom does John live with ; DEFAULT with whom does John live StrandQuestSlash = QuestSlash ; -- whom does John live with ; DEFAULT with whom does John live
StrandRelSlash = RelSlash ; -- that he lives in ; DEFAULT in which he lives StrandRelSlash = RelSlash ; -- that he lives in ; DEFAULT in which he lives
EmptyRelSlash = RelSlash IdRP ; -- he lives in ; DEFAULT in which he lives EmptyRelSlash = RelSlash IdRP ; -- he lives in ; DEFAULT in which he lives

16
src/dutch/ExtendDut.gf Normal file
View File

@@ -0,0 +1,16 @@
--# -path=alltenses:../common:../abstract
concrete ExtendDut of Extend =
CatDut ** ExtendFunctor
-- - [] -- put the names of your own definitions here
with
(Grammar = GrammarDut) **
open
GrammarDut,
ResDut,
Coordination,
Prelude,
ParadigmsDut in {
-- put your own definitions here
}

16
src/spanish/ExtendSpa.gf Normal file
View File

@@ -0,0 +1,16 @@
--# -path=alltenses:../common:../abstract
concrete ExtendSpa of Extend =
CatSpa ** ExtendFunctor
-- - [] -- put the names of your own definitions here
with
(Grammar = GrammarSpa) **
open
GrammarSpa,
ResSpa,
Coordination,
Prelude,
ParadigmsSpa in {
-- put your own definitions here
}