def cstr(self): """ Property which return the C code corresponding to the decompilation of this :class:`CNode` as a onliner. This will include the children of this object. :return str: The human readable C string corresponding to this :class:`CNode` as a onliner. """ s = self._citem.print1(self._hxcfunc._cfunc.__ref__()) return ida_pro.str2user(ida_lines.tag_remove(s))
def get_expr_name(self, expr): name = expr.print1(None) name = ida_lines.tag_remove(name) name = ida_pro.str2user(name) return name