Update global info in the module Parameters ---------- name: str The name for the global info. global_info: List[GlobalInfo] The global info to be updated.
(self, name, global_info)
| 154 | return _ffi_api.Module_UpdateFunction(self, var, func) |
| 155 | |
| 156 | def update_global_info(self, name, global_info): |
| 157 | """Update global info in the module |
| 158 | |
| 159 | Parameters |
| 160 | ---------- |
| 161 | name: str |
| 162 | The name for the global info. |
| 163 | |
| 164 | global_info: List[GlobalInfo] |
| 165 | The global info to be updated. |
| 166 | """ |
| 167 | return _ffi_api.Module_UpdateGlobalInfo(self, name, global_info) |
| 168 | |
| 169 | def get_global_var(self, name): |
| 170 | """Get a global variable in the function by name. |
no outgoing calls