Skip to content

Commit

Permalink
Merge pull request #43674 from gimantha/fix-missing-encoded-func-name
Browse files Browse the repository at this point in the history
[Master] Set encoded function name in lambda details
  • Loading branch information
gimantha authored Dec 3, 2024
2 parents 8b43eba + d1ff889 commit bb0f8fb
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ private LambdaDetails populateAsyncLambdaDetails(BIRTerminator.AsyncCall asyncIn
lambdaDetails.lhsType = asyncIns.lhsOp != null ? asyncIns.lhsOp.variableDcl.type : null;
lambdaDetails.packageID = asyncIns.calleePkg;
lambdaDetails.funcName = asyncIns.name.getValue();
lambdaDetails.encodedFuncName = Utils.encodeFunctionIdentifier(lambdaDetails.funcName);
if (!asyncIns.isVirtual) {
populateLambdaFunctionDetails(lambdaDetails);
}
Expand Down

0 comments on commit bb0f8fb

Please sign in to comment.