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? 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
activate()
await
Refactor the activate function (main entry point to extension) to use await instead of promise chaining and promise constructors.
activate
Why?
async
The text was updated successfully, but these errors were encountered:
Refactor activate() to use await
b2a4279
Closes redhat-developer#2906 Signed-off-by: David Thompson <davthomp@redhat.com>
f703482
Successfully merging a pull request may close this issue.
Refactor the
activate
function (main entry point to extension) to useawait
instead of promise chaining and promise constructors.Why?
async
could make it shorterasync
promise executors, which are considered bad since they make error handling hardThe text was updated successfully, but these errors were encountered: