Extended Description
The following lldb commands fail to lookup/set breakpoint on given method names:
image lookup -n A::foo()
b A::foo()
The problem is that lldb passes the function base name(e.g. "foo()") to Plugins' FindFunctions, and NativePDB plugin can only lookup functions by their full names.
Is there a way to only pass functions' full names to FindFunctions?