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
Right now multiple overloaded functions do not seem to be handled.
For example:
fnfoo(a,b,c,d,e,f){}fnfoo(x,y,z){}fnfoo(n){}
/./ The following three calls should resolve to different overloaded versions
foo(1,2,3,4,5,6);foo(1,2,3);foo(1);
Right now, it seems the function popup and "goto definition" jumps to a random choice, instead of at least matching the number of parameters...
The text was updated successfully, but these errors were encountered:
Right now multiple overloaded functions do not seem to be handled.
For example:
Right now, it seems the function popup and "goto definition" jumps to a random choice, instead of at least matching the number of parameters...
The text was updated successfully, but these errors were encountered: