forked from GitHub/gf-rgl
add coordinator parameter for missing conjunctions
This commit is contained in:
@@ -1159,7 +1159,7 @@ oper
|
|||||||
Preposition : Type = {s : Str ; c : Case ; isPost : Bool } ;
|
Preposition : Type = {s : Str ; c : Case ; isPost : Bool } ;
|
||||||
|
|
||||||
-- conjunctions
|
-- conjunctions
|
||||||
param Coordinator = And | Or | If | Neither | Because | Comma | Colon | Empty ;
|
param Coordinator = And | Or | If | Neither | Because | Comma | Colon | Empty | Missing ; -- Missing means not implemented yet
|
||||||
oper
|
oper
|
||||||
Conjunction : Type = { s1 : Str ; s2 : Str ; n : Number ; c : Coordinator };
|
Conjunction : Type = { s1 : Str ; s2 : Str ; n : Number ; c : Coordinator };
|
||||||
mkConjunction : Str -> Str -> Number -> Coordinator -> Conjunction = \s1,s2,num,coord -> { s1 = s1; s2 = s2 ; n = num ; c = coord } ;
|
mkConjunction : Str -> Str -> Number -> Coordinator -> Conjunction = \s1,s2,num,coord -> { s1 = s1; s2 = s2 ; n = num ; c = coord } ;
|
||||||
|
|||||||
Reference in New Issue
Block a user