``set_name_async`` provides a way to asynchronously set the name of a variable. This method should be used when speed is of concern.
(self, name: Optional[str])
| 902 | return self._il_function |
| 903 | |
| 904 | def set_name_async(self, name: Optional[str]) -> None: |
| 905 | """ |
| 906 | ``set_name_async`` provides a way to asynchronously set the name of a variable. This method should be used |
| 907 | when speed is of concern. |
| 908 | """ |
| 909 | if name is None: |
| 910 | name = "" |
| 911 | self._function.create_user_var(self, self.type, name) |
| 912 | |
| 913 | def set_type_async(self, new_type: 'binaryninja.types.Type') -> None: |
| 914 | """ |