(self, func: Optional['Function'] = None)
| 3395 | |
| 3396 | class AdvancedFunctionAnalysisDataRequestor: |
| 3397 | def __init__(self, func: Optional['Function'] = None): |
| 3398 | self._function = func |
| 3399 | if self._function is not None: |
| 3400 | self._function.request_advanced_analysis_data() |
| 3401 | |
| 3402 | def __del__(self): |
| 3403 | if self._function is not None: |
nothing calls this directly
no test coverage detected