Add an xref to the function. Args: xref (CodeContext): code context that calls (xrefs) our function
(self, xref)
| 41 | return True |
| 42 | |
| 43 | def addXref(self, xref): |
| 44 | """Add an xref to the function. |
| 45 | |
| 46 | Args: |
| 47 | xref (CodeContext): code context that calls (xrefs) our function |
| 48 | """ |
| 49 | self.xrefs.add(xref) |
| 50 | |
| 51 | def removeXref(self, xref): |
| 52 | """Remove an xref from the function (the caller was probably found irrelevant for our search). |
no test coverage detected