We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I'm trying to do some cool stack modification stuff to make things more detailed.
Example:
if (call.getMethodName() === '_onTimeout') { call.methodName = 'setTimeout'; console.log(call.getMethodName()); // _onTimeout }
The text was updated successfully, but these errors were encountered:
Would overwriting the method you're interested in work? Happy to hear about API change suggestions if not.
Sorry, something went wrong.
@felixge Sure I could
call.methodName = 'setTimeout'; call.getMethodName = function() { return 'setTimeout'; }
but it doesn't feel totally right. I think we can adjust the functions to be more like
call.getMethodName = function() { return call.methodName; }
to allow for easier modifications. I'll send a PR if you think it sounds like a good idea
SGTM, pull request it!
No branches or pull requests
I'm trying to do some cool stack modification stuff to make things more detailed.
Example:
The text was updated successfully, but these errors were encountered: