(May) Word order with determiners and relative clauses

This commit is contained in:
Inari Listenmaa
2020-08-20 13:05:29 +02:00
parent afc299308c
commit 00a72f907b
3 changed files with 30 additions and 15 deletions

View File

@@ -11,6 +11,7 @@ oper
Noun3 : Type = Noun2 ** {c3 : Preposition} ;
CNoun : Type = Noun ** {
heavyMod : Str ; -- heavy stuff like relative clauses after determiner
} ;
PNoun : Type = Noun ;
@@ -22,7 +23,9 @@ oper
}
} ;
useN : Noun -> CNoun = \n -> n ;
useN : Noun -> CNoun = \n -> n ** {
heavyMod = []
} ;
---------------------------------------------
-- Pronoun