<div dir="ltr"><div dir="ltr"><div dir="ltr">Hi all!<div><br></div><div>There are two hardcoded names to ignore in the `ClangASTSource::IgnoreName` function, "Class" and "id", they are valid names for C++. It seems that they were added for the Objective-C case. But the problem is that when they are in locals they are blocking expressions evaluation.</div><div><br></div><div>For example for the next code:</div></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div><div><font face="monospace, monospace">int main() {</font></div></div><div><div><font face="monospace, monospace">  int x = 5;</font></div></div><div><div><font face="monospace, monospace">  int id = 7;</font></div></div><div><div><font face="monospace, monospace">  int y = 8;</font></div></div><div><div><font face="monospace, monospace">  return 0;</font></div></div><div><div><font face="monospace, monospace">}</font></div></div></blockquote><div dir="ltr"><div><font face="arial, helvetica, sans-serif">if you'll break on `return 0` and will try to `print x`, then you'll get a error like `no member named 'id' in namespace '$__lldb_local_vars'</font><span style="font-family:arial,helvetica,sans-serif">`.</span></div><div><span style="font-family:arial,helvetica,sans-serif"><br></span></div><div><span style="font-family:arial,helvetica,sans-serif">Do you have any ideas, how can we fix it?</span></div><div><span style="font-family:arial,helvetica,sans-serif"><br></span></div><div>Regards,<br></div><div>Alex</div></div></div></div>