Record a function call artifact in the code's artifacts list. Args: call (varies): name of ea that identifies the (basic) function call
(self, call)
| 120 | self.strings.add(string) |
| 121 | |
| 122 | def recordCall(self, call): |
| 123 | """Record a function call artifact in the code's artifacts list. |
| 124 | |
| 125 | Args: |
| 126 | call (varies): name of ea that identifies the (basic) function call |
| 127 | """ |
| 128 | self.calls.add(call) |
| 129 | |
| 130 | def rankConsts(self): |
| 131 | """Rank all of the consts of our context - should be done only once on init.""" |
no test coverage detected