1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Merge pull request #949 from Fusioon/autocomplete-indexer-fix

Fix indexer autocomplete.
This commit is contained in:
Brian Fiete 2021-03-17 07:43:47 -04:00 committed by GitHub
commit f12a373ae0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2306,18 +2306,40 @@ bool BfAutoComplete::GetMethodInfo(BfMethodInstance* methodInst, StringImpl* sho
StringT<128> propName;
StringT<256> impl;
propDeclaration->mNameNode->ToString(propName);
if (propDeclaration->mNameNode != NULL)
propDeclaration->mNameNode->ToString(propName);
else
{
StringT<128> args;
propName += "this[";
for (size_t paramIdx = 0, count = methodInst->GetParamCount(); paramIdx < count; ++paramIdx)
{
if (paramIdx > 0)
args += ", ";
args += mModule->TypeToString(methodInst->GetParamType(paramIdx), nameFlags);
args += " ";
args += methodDef->mParams[paramIdx]->mName;
}
propName += args;
propName += "]";
}
bool isAbstract = methodDef->mIsAbstract;
if (propDeclaration->mProtectionSpecifier != NULL)
impl += propDeclaration->mProtectionSpecifier->ToString() + " ";
else if (isInterface && !isExplicitInterface)
impl += "public ";
if (!isInterface)
impl += "override ";
BfType* propType = methodInst->mReturnType;
if (methodDef->mMethodType == BfMethodType_PropertySetter)
propType = methodInst->GetParamType(0);
impl += mModule->TypeToString(propType, nameFlags);
impl += " ";
if (isExplicitInterface)