mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Fixed function type collision issue with params
This commit is contained in:
parent
185db196e0
commit
439ae8d3c4
3 changed files with 19 additions and 1 deletions
|
@ -12731,6 +12731,9 @@ BfType* BfModule::ResolveTypeRef_Ref(BfTypeReference* typeRef, BfPopulateType po
|
|||
if (paramType == NULL)
|
||||
paramType = GetPrimitiveType(BfTypeCode_Var);
|
||||
|
||||
if ((param->mModToken != NULL) && (param->mModToken->mToken == BfToken_Params))
|
||||
delegateInfo->mHasParams = true;
|
||||
|
||||
String paramName;
|
||||
if (param->mNameNode != NULL)
|
||||
paramName = param->mNameNode->ToString();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue