mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
Include inner-overload method in classview
This commit is contained in:
parent
a17b086bd4
commit
687dde063f
3 changed files with 42 additions and 14 deletions
|
@ -8237,11 +8237,14 @@ String BfCompiler::GetTypeDefMatches(const StringImpl& searchStr)
|
|||
|
||||
if (methodDef->mMethodDeclaration == NULL)
|
||||
continue;
|
||||
|
||||
|
||||
matchHelper.ClearResults();
|
||||
if (matchHelper.CheckMemberMatch(typeDef, methodDef->mName))
|
||||
{
|
||||
result += "M";
|
||||
if (methodDef->mIsOverride)
|
||||
result += "o";
|
||||
else
|
||||
result += "M";
|
||||
if (BfTypeUtils::TypeToString(result, typeDef, (BfTypeNameFlags)(BfTypeNameFlag_HideGlobalName | BfTypeNameFlag_InternalName)))
|
||||
result += ".";
|
||||
matchHelper.AddMethodDef(methodDef);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue