1
0

Fixed bugs in patched tolua output

This commit is contained in:
Tycho
2014-03-19 12:38:00 -07:00
parent 1635c696de
commit 6a3fe7adcc
10 changed files with 2533 additions and 2213 deletions

View File

@@ -145,12 +145,14 @@ function typevar(type)
end
end
-- is enum
function isenum (type)
return _enums[type]
end
-- check if basic type
function isbasic (type)
local t = gsub(type,'const ','')
if _enum_is_functions[t] then
return nil
end
local m,t = applytypedef('', t)
local b = _basic[t]
if b then
@@ -385,7 +387,7 @@ end
_push_functions = {}
_is_functions = {}
_enum_is_functions = {}
_enums = {}
_to_functions = {}
_base_push_functions = {}
@@ -414,5 +416,8 @@ function get_to_function(t)
end
function get_is_function(t)
return _enum_is_functions[t] or _is_functions[t] or search_base(t, _base_is_functions) or "tolua_isusertype"
if _enums[t] then
return "tolua_is" .. t
end
return _is_functions[t] or search_base(t, _base_is_functions) or "tolua_isusertype"
end