1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Fixed autocomplete mDefMethodGenericParamIdx clearing

This commit is contained in:
Brian Fiete 2020-06-25 05:33:09 -07:00
parent f49a9ef74f
commit bb0a73f01d

View file

@ -4179,11 +4179,13 @@ void BfCompiler::ProcessAutocompleteTempType()
if (actualReplaceMethodDef == NULL)
{
autoComplete->mReplaceLocalId = -1;
autoComplete->mDefType = NULL;
autoComplete->mDefField = NULL;
autoComplete->mDefProp = NULL;
autoComplete->mReplaceLocalId = -1;
autoComplete->mDefMethod = NULL;
autoComplete->mDefProp = NULL;
autoComplete->mDefMethodGenericParamIdx = -1;
autoComplete->mDefTypeGenericParamIdx = -1;
}
else
autoComplete->mDefMethod = actualReplaceMethodDef;