Symbol name for the function
(self)
| 514 | |
| 515 | @property |
| 516 | def name(self) -> str: |
| 517 | """Symbol name for the function""" |
| 518 | return self.symbol.name |
| 519 | |
| 520 | @name.setter |
| 521 | def name(self, value: Union[str, 'types.CoreSymbol']) -> None: # type: ignore |
nothing calls this directly
no test coverage detected