Skip to content

Commit

Permalink
Update the Delegation logic for LookUp Call nodes (#2257)
Browse files Browse the repository at this point in the history
Incorrect logic for determining whether a LookUp Call node could be
delegated was added in a previous PR
#2065

Updating the logic to ensure proper handling of edge cases
  • Loading branch information
ian-legler authored Mar 15, 2024
1 parent d8d3e8c commit bf5c438
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function is LookUpFunction lookup && args.Count > 2 &&
return false;
}

return IsValidCallNodeInternal(node, binding, metadata, trackingFunction ?? Function);
return base.IsValidCallNode(node, binding, metadata, trackingFunction ?? Function);
}
}
}

0 comments on commit bf5c438

Please sign in to comment.