You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in FindBestMethod, if there are more than one applicable method, the candidates are filtered by the MethodHasPriority method. If no method has priority (like in this particular case), then FindBestMethod returns an empty array, and therefore the caller can't see that there's in fact an ambiguity
* Properly return all the possible overloads if no overload is an exact match.
Fixes#159
* Added a way to remove identifiers from the current interpreter.
* SetFunction now only keeps the latest delegate registered with a given signature (ie. it's no longer possible to register two delegates with the exact same signature).
* Fix broken test.
We should throw instead a
ParseException
withAmbiguousDelegateInvocation
that describe better the use case.See #157 and #158 .
See also this explanation
The text was updated successfully, but these errors were encountered: