diff options
Diffstat (limited to 'scripts/msgpack-gen.lua')
-rw-r--r-- | scripts/msgpack-gen.lua | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/scripts/msgpack-gen.lua b/scripts/msgpack-gen.lua index edf97b8cfd..d303fde2fc 100644 --- a/scripts/msgpack-gen.lua +++ b/scripts/msgpack-gen.lua @@ -20,18 +20,7 @@ c_id = letter * (alpha ^ 0) c_void = P('void') c_param_type = ( ((P('Error') * fill * P('*') * fill) * Cc('error')) + - (C(P('bool')) * (ws ^ 1)) + - (C(P('int64_t')) * (ws ^ 1)) + - (C(P('double')) * (ws ^ 1)) + - (C(P('StringArray')) * (ws ^ 1)) + - (C(P('String')) * (ws ^ 1)) + - (C(P('Buffer')) * (ws ^ 1)) + - (C(P('Window')) * (ws ^ 1)) + - (C(P('Tabpage')) * (ws ^ 1)) + - (C(P('Object')) * (ws ^ 1)) + - (C(P('Position')) * (ws ^ 1)) + - (C(P('Array')) * (ws ^ 1)) + - (C(P('Dictionary')) * (ws ^ 1)) + (C(c_id) * (ws ^ 1)) ) c_type = (C(c_void) * (ws ^ 1)) + c_param_type c_param = Ct(c_param_type * C(c_id)) |