(self)
| 262 | |
| 263 | @property |
| 264 | def _function(self) -> Function: |
| 265 | bn_function = core.BNFirmwareNinjaReferenceNodeGetFunction(self._handle) |
| 266 | if not bn_function: |
| 267 | return None |
| 268 | |
| 269 | return Function(handle=bn_function) |
| 270 | |
| 271 | @property |
| 272 | def _data_variable(self) -> DataVariable: |