Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix C style function resolution #1860

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Fix C style function resolution #1860

wants to merge 3 commits into from

Conversation

peckto
Copy link
Collaborator

@peckto peckto commented Nov 20, 2024

Do not use signature based symbol resolving for languages without function overloading.
Fixes: #1635

if (result.candidateFunctions.size > 1) {
result.success = CallResolutionResult.SuccessKind.PROBLEMATIC
} else
// If we have only one candidate function and the number of arguments match, we can take
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This has multiple issues

  1. This does not only affect C but other languages as well.
  2. It does not take into account if languages have default arguments

At the very least I think we need to make this configurable. Depending on the use case you MAY or MAY NOT want to do this. For example if you actually want to check if something is resolving similar to a compiler (e.g., also inference turned off), you want to have an empty list of invokes edges here.

If you want to be very optimistic about matching types, this may be another (maybe even global?) configuration option. You can always of course override the tryCast in a language that depends on the C language if you want to have a "matches-everything-C-language`.

So I am very skeptical about this change.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that's true, default arguments are a problem, haven't thought about that.
Also the go var args arguments fail.
Do we have a language feature for that to match on?
Affecting other languages is not a problem per se I would say, but other languages bring other combinations of features, which must be taken into account during the resolution.

Override the tryCast might be an alternative for the C language.

Not sure if we want to make this configurable, as long as it is conform with the language design.
Configuration options tend to be only used by the person who implemented them and others are wondering why it's not working, not knowing about the option.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Call resolving for languages without function overloading
2 participants