aboutsummaryrefslogtreecommitdiff
path: root/python/tosa/WhileLoopAttribute.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tosa/WhileLoopAttribute.py')
-rw-r--r--python/tosa/WhileLoopAttribute.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/python/tosa/WhileLoopAttribute.py b/python/tosa/WhileLoopAttribute.py
index 1e18bca..1078a07 100644
--- a/python/tosa/WhileLoopAttribute.py
+++ b/python/tosa/WhileLoopAttribute.py
@@ -10,13 +10,17 @@ class WhileLoopAttribute(object):
__slots__ = ['_tab']
@classmethod
- def GetRootAsWhileLoopAttribute(cls, buf, offset):
+ def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = WhileLoopAttribute()
x.Init(buf, n + offset)
return x
@classmethod
+ def GetRootAsWhileLoopAttribute(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
def WhileLoopAttributeBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x4F\x53\x41", size_prefixed=size_prefixed)
@@ -39,6 +43,14 @@ class WhileLoopAttribute(object):
return None
def WhileLoopAttributeStart(builder): builder.StartObject(2)
+def Start(builder):
+ return WhileLoopAttributeStart(builder)
def WhileLoopAttributeAddCondBranch(builder, condBranch): builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UOffsetTFlags.py_type(condBranch), 0)
+def AddCondBranch(builder, condBranch):
+ return WhileLoopAttributeAddCondBranch(builder, condBranch)
def WhileLoopAttributeAddBodyBranch(builder, bodyBranch): builder.PrependUOffsetTRelativeSlot(1, flatbuffers.number_types.UOffsetTFlags.py_type(bodyBranch), 0)
+def AddBodyBranch(builder, bodyBranch):
+ return WhileLoopAttributeAddBodyBranch(builder, bodyBranch)
def WhileLoopAttributeEnd(builder): return builder.EndObject()
+def End(builder):
+ return WhileLoopAttributeEnd(builder) \ No newline at end of file