clayborg wrote:

the `def update(self):` is a mandatory function that is automatically called 
for you by the LLDB python synthetic child provider when a variable needs to be 
updated, so you can't rename it. Since you renamed that to be 
`extract_entries`, your synthetic child provider will never update itself. So 
rename this to `update` and call `self.update()` in the `__init__` function, 
and change your function as outlined above and everything should work.

https://github.com/llvm/llvm-project/pull/117755
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to