summaryrefslogtreecommitdiff
path: root/src/scripts/pyolian/eolian.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/pyolian/eolian.py')
-rw-r--r--src/scripts/pyolian/eolian.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/scripts/pyolian/eolian.py b/src/scripts/pyolian/eolian.py
index 0df6ee8884..a2a6b5c323 100644
--- a/src/scripts/pyolian/eolian.py
+++ b/src/scripts/pyolian/eolian.py
@@ -622,6 +622,10 @@ class Object(EolianBaseObject):
def column(self):
return int(lib.eolian_object_column_get(self))
+ @cached_property
+ def is_beta(self):
+ return bool(lib.eolian_object_is_beta(self))
+
class Class(Object):
def __repr__(self):
@@ -811,10 +815,6 @@ class Event(Object):
return Eolian_Object_Scope(lib.eolian_event_scope_get(self))
@cached_property
- def is_beta(self):
- return bool(lib.eolian_event_is_beta(self))
-
- @cached_property
def is_hot(self):
return bool(lib.eolian_event_is_hot(self))
@@ -887,10 +887,6 @@ class Function(Object):
return bool(lib.eolian_function_is_class(self))
@cached_property
- def is_beta(self):
- return bool(lib.eolian_function_is_beta(self))
-
- @cached_property
def object_is_const(self):
return bool(lib.eolian_function_object_is_const(self))