q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=beacff79595912e673af4967051fbe7ed3d8b0da

commit beacff79595912e673af4967051fbe7ed3d8b0da
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Thu Nov 19 13:19:22 2015 +0000

    elua: add eolian_type_aliased_base_get to lua bindings
---
 src/bindings/luajit/eolian.lua | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/bindings/luajit/eolian.lua b/src/bindings/luajit/eolian.lua
index 3a8686d..e71eaad 100644
--- a/src/bindings/luajit/eolian.lua
+++ b/src/bindings/luajit/eolian.lua
@@ -280,6 +280,7 @@ ffi.cdef [[
     const char *eolian_type_file_get(const Eolian_Type *tp);
     const Eolian_Type *eolian_type_return_type_get(const Eolian_Type *tp);
     const Eolian_Type *eolian_type_base_type_get(const Eolian_Type *tp);
+    const Eolian_Type *eolian_type_aliased_base_get(const Eolian_Type *tp);
     const Eolian_Class *eolian_type_class_get(const Eolian_Type *tp);
     Eina_Bool eolian_type_is_own(const Eolian_Type *tp);
     Eina_Bool eolian_type_is_const(const Eolian_Type *tp);
@@ -538,6 +539,12 @@ M.Type = ffi.metatype("Eolian_Type", {
             return v
         end,
 
+        aliased_base_get = function(self)
+            local v = eolian.eolian_type_aliased_byse_get(self)
+            if v == nil then return nil end
+            return v
+        end,
+
         class_get = function(self)
             local v = eolian.eolian_type_class_get(self)
             if v == nil then return nil end

-- 


Reply via email to