Beispiel #1
0
 def scope_get(self, ftype):
     return Eolian_Object_Scope(lib.eolian_function_scope_get(self, ftype))
Beispiel #2
0
 def prop_writable(self):
     # TODO: maybe there is a better way to do this...
     ftype = Eolian_Function_Type.PROP_SET
     scope = lib.eolian_function_scope_get(self, ftype)
     return True if scope != Eolian_Object_Scope.UNKNOWN else False