for edge in fgraph.outEdges(vertex_index):
foo = edge.getPropertyInt("foo")
for edge in fgraph.inEdges(vertex_index):
foo = edge.getPropertyInt("foo")
translates to
for (const auto& edge : fgraph.outEdges(vertex_index)){
auto foo = edge.getProperty<int>("foo");
}
for (const auto& edge : fgraph.inEdges(vertex_index)){
foo = edge.getProperty<int>("foo");
}
This could be fixed by updating self._locals to instead store tuples that log the value of self._indent at declaration. Then self._locals could be purged of out of scope vars as leave() is triggered which decrements self._indent.
I may try to address this after network message has been merged (rather than complicate my existing changes).
translates to
This could be fixed by updating
self._locals
to instead store tuples that log the value ofself._indent
at declaration. Thenself._locals
could be purged of out of scope vars asleave()
is triggered which decrementsself._indent
.I may try to address this after network message has been merged (rather than complicate my existing changes).