aboutsummaryrefslogtreecommitdiff
path: root/python/tosa/WhileLoopAttribute.py
diff options
context:
space:
mode:
authorTai Ly <tai.ly@arm.com>2023-07-03 22:14:05 +0000
committerTai Ly <tai.ly@arm.com>2023-07-18 21:00:58 +0000
commit89963aa8fad822ab7a6e1ff92f6b7b4ee0b9350c (patch)
tree123b51806c246b5c10fe20d2f90609d03d373b0c /python/tosa/WhileLoopAttribute.py
parent0bc46e44e6501788c4661d1f03572c14ea2ecc89 (diff)
downloadserialization_lib-89963aa8fad822ab7a6e1ff92f6b7b4ee0b9350c.tar.gz
Update to use GenText
changed GenerateText to GenText, with reversed return polarity. updated flatbuffer to v23.5.26, and regenerated headers Signed-off-by: Tai Ly <tai.ly@arm.com> Change-Id: I7278dfe9c7b55b9afbe2329e3058b63a1cdce586
Diffstat (limited to 'python/tosa/WhileLoopAttribute.py')
-rw-r--r--python/tosa/WhileLoopAttribute.py27
1 files changed, 19 insertions, 8 deletions
diff --git a/python/tosa/WhileLoopAttribute.py b/python/tosa/WhileLoopAttribute.py
index 1078a07..20bc728 100644
--- a/python/tosa/WhileLoopAttribute.py
+++ b/python/tosa/WhileLoopAttribute.py
@@ -42,15 +42,26 @@ class WhileLoopAttribute(object):
return self._tab.String(o + self._tab.Pos)
return None
-def WhileLoopAttributeStart(builder): builder.StartObject(2)
+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)
+ 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)
+ 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()
+ WhileLoopAttributeAddBodyBranch(builder, bodyBranch)
+
+def WhileLoopAttributeEnd(builder):
+ return builder.EndObject()
+
def End(builder):
- return WhileLoopAttributeEnd(builder) \ No newline at end of file
+ return WhileLoopAttributeEnd(builder)