(self, ctxt, graph)
| 114 | return f'<RenderLayer: {self.name}>' |
| 115 | |
| 116 | def _apply_to_flow_graph(self, ctxt, graph): |
| 117 | try: |
| 118 | self.apply_to_flow_graph(binaryninja.FlowGraph(handle=core.BNNewFlowGraphReference(graph))) |
| 119 | except: |
| 120 | log_error(traceback.format_exc()) |
| 121 | |
| 122 | def _apply_to_linear_view_object(self, ctxt, obj, prev, next, in_lines, in_line_count, out_lines, out_line_count): |
| 123 | try: |
nothing calls this directly
no test coverage detected