MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / append

Method append

python/flowgraph.py:816–826  ·  view source on GitHub ↗

``append`` adds a node to a flow graph. .. note:: After the graph has completed layout, this function has no effect. :param FlowGraphNode node: Node to add :return: Index of node :rtype: int

(self, node)

Source from the content-addressed store, hash-verified

814 return result
815
816 def append(self, node):
817 """
818 ``append`` adds a node to a flow graph.
819
820 .. note:: After the graph has completed layout, this function has no effect.
821
822 :param FlowGraphNode node: Node to add
823 :return: Index of node
824 :rtype: int
825 """
826 return core.BNAddFlowGraphNode(self.handle, node.handle)
827
828 def replace(self, index, node):
829 """

Callers 8

linesMethod · 0.45
outgoing_edgesMethod · 0.45
incoming_edgesMethod · 0.45
_external_ref_takenMethod · 0.45
nodesMethod · 0.45
get_nodes_in_regionMethod · 0.45
render_layersMethod · 0.45
_layoutMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected