1
0

Fixed tolua emitting isnumber insteand of is<Enum>

This commit is contained in:
Tycho
2014-03-19 12:02:26 -07:00
parent e8f7c18ba7
commit 04adca3410
4 changed files with 467 additions and 454 deletions

View File

@@ -148,6 +148,9 @@ 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
@@ -382,6 +385,7 @@ end
_push_functions = {}
_is_functions = {}
_enum_is_functions = {}
_to_functions = {}
_base_push_functions = {}
@@ -410,5 +414,5 @@ function get_to_function(t)
end
function get_is_function(t)
return _is_functions[t] or search_base(t, _base_is_functions) or "tolua_isusertype"
return _enum_is_functions[t] or _is_functions[t] or search_base(t, _base_is_functions) or "tolua_isusertype"
end