Hello,
i figured out that the method-list feature of eassist doesn't work properly if nested namespaces are used in C++.
This example works fine:
namespace foo
{
class bar
{
void do();
};
}
For the next one no methods are shown:
namespace foo
{
namespace baz
{
class bar
{
void do();
};
}
}
Because i'm a "beginner" in elisp maybe somebody could point me in the direction how to extend the eassist package to support nested namespaces? I use the ECB package too and it's method-buffer show all members even in nested namespaces so i think it's not a semantic problem.
Best regards
Sven