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
When we reach out to get the callee type, we might get an error, e.g.
if the callee is overloaded. Example:
```
ch => sb.append(ch)
```
Here we might want to call calleeType to find the argument type
of `sb.append` in order to use this type as the type of `ch`. But
this fails since `append` is overloaded on StringBuffer.
Prevously this did not matter since we called calleeType only as a last
effort, so if it failed the whole typing failed. But with the changes
forseen for fiing #8111 we need to be able to compute calleeType and
retract it if it does not work.
0 commit comments