-
Notifications
You must be signed in to change notification settings - Fork 55
Add InstallDeprecatedMethod #742
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
base: main
Are you sure you want to change the base?
Conversation
Thanks @devansh2605, can you please fix the linting, and then we can proceed to a proper review. |
return func(a, b, c, d, e, f); | ||
end; | ||
else | ||
Error("Unsupported args: ", args); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could just do:
newMethod := function(args...)
Warning(warningMsg);
return CallFuncList(fun, args);
end;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah this doesn't work, hmmm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@james-d-mitchell sir, should I update this to your suggestion or try an alternative route? Or is the current implementation correct?
@james-d-mitchell I have fixed the linting as well, pls let me know if any other modifications are required. |
I've had a look at this – looks like you've put some work in, but at the moment there are quite a few syntax errors and it's not loading up. Why don't we shelve this for now while you work on other issues? I'll leave the issue open. |
#735