(Pes) Add a parameter to VS whether to select subjunctive or indicative

Co-Authored-By: Nasrin Mostofian <nasrin.mostofian@gmail.com>
This commit is contained in:
Inari Listenmaa
2019-04-18 18:10:13 +02:00
parent 92a49f9c47
commit 02b231363e
4 changed files with 10 additions and 9 deletions
+2 -2
View File
@@ -148,9 +148,9 @@ oper
mkVS = overload {
mkVS : Str -> VS -- predictable verb with sentence complement
= \s -> lin VS (regV s) ;
= \s -> lin VS (regV s ** {compl=subjunctive}) ;
mkVS : V -> VS -- VS out of a verb
= \v -> lin VS v
= \v -> lin VS (v ** {compl=subjunctive})
} ;
mkVV = overload {