================ @@ -0,0 +1,45 @@ +import lldb + +class FacadeExample: + def __init__(self, bkpt, extra_args, dict): + self.bkpt = bkpt + self.extra_args = extra_args + self.base_sym = None + self.facade_locs = [] + self.facade_locs_desc = [] + self.cur_facade_loc = 1 + + self.sym_name = extra_args.GetValueForKey("symbol").GetStringValue(100) + self.num_locs = extra_args.GetValueForKey("num_locs").GetIntegerValue(5) ---------------- medismailben wrote:
I believe you can do this with @kastiglione recent change. ```suggestion self.sym_name = str(extra_args.GetValueForKey("symbol")) self.num_locs = int(extra_args.GetValueForKey("num_locs")) ``` https://github.com/llvm/llvm-project/pull/158128 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits