tasn pushed a commit to branch master.

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

commit bd98b517178e4d07680de9005a6bbaf8bba6549f
Author: Tom Hacohen <t...@stosb.com>
Date:   Mon Apr 11 17:29:15 2016 +0100

    Eo base: Make parent nullable.
    
    It's allowed to be null, so mark it as such. This is useful
    for languages that support nullable vs non-nullable types.
---
 src/lib/eo/eo_base.eo | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/eo/eo_base.eo b/src/lib/eo/eo_base.eo
index ad6cd68..9043cf9 100644
--- a/src/lib/eo/eo_base.eo
+++ b/src/lib/eo/eo_base.eo
@@ -62,7 +62,7 @@ abstract Eo.Base ()
             [[Get the parent of an object]]
          }
          values {
-            parent: Eo.Base*; [[the new parent]]
+            parent: Eo.Base * @nullable; [[the new parent]]
          }
       }
       @property event_global_freeze_count @class {

-- 


Reply via email to