elua: more fixes

This commit is contained in:
Daniel Kolesa 2014-04-14 14:56:10 +01:00 committed by Daniel Kolesa
parent 08e0fea8ca
commit 78a9fee179
2 changed files with 3 additions and 3 deletions

View File

@ -92,7 +92,7 @@ local List_Iterator = Iterator:clone {
next = function(self)
local v = Iterator.next(self)
if not v then return nil end
return self.__list:data_get(v)
return dgetmt(self).__list:data_get(v)
end
}

View File

@ -206,8 +206,8 @@ M.function_scope = {
}
M.class_functions_list_get = function(cname, func_type)
return Eolian_Functions_List(eolian.eolian_class_functions_list_get(cname),
func_type):to_array()
return Eolian_Functions_List(eolian.eolian_class_functions_list_get(cname,
func_type)):to_array()
end
M.class_default_constructor_get = function(cname)