Calling convention used by the function
(self)
| 1375 | |
| 1376 | @property |
| 1377 | def calling_convention(self) -> Optional['callingconvention.CallingConvention']: |
| 1378 | """Calling convention used by the function""" |
| 1379 | result = core.BNGetFunctionCallingConvention(self.handle) |
| 1380 | if not result.convention: |
| 1381 | return None |
| 1382 | return callingconvention.CallingConvention(None, handle=result.convention, confidence=result.confidence) |
| 1383 | |
| 1384 | @calling_convention.setter |
| 1385 | def calling_convention(self, value: Optional['callingconvention.CallingConvention']) -> None: |
no test coverage detected