1
0
forked from GitHub/gf-rgl

Maltese RG: make pro-drop explicit. Other small fixes in Structural, Lexicon.

This commit is contained in:
john
2013-08-30 07:40:42 +00:00
parent ce65acbbba
commit 0df97bb06a
11 changed files with 52 additions and 35 deletions
+5 -4
View File
@@ -19,10 +19,11 @@ concrete SentenceMlt of Sentence = CatMlt ** open
-- John walks
PredVP np vp =
let
subj : Str = case np.isPron of {
True => [] ; -- omit subject pronouns
False => np.s ! NPNom
} ;
-- subj : Str = case np.isPron of {
-- True => [] ; -- omit subject pronouns
-- False => np.s ! NPNom
-- } ;
subj : Str = np.s ! NPNom ;
in
mkClause subj np.a vp ;