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
Some asynchronous code looks bad when you use a lot of objects and properties.
var v = (await future1((await future2).property2)).property1;
I would like to see (await someFuture()).property as someFuture().awaited.property then code above could be rewritten as
(await someFuture()).property
someFuture().awaited.property
var v = future1(future2.awaited.property2).awaited.property1;
We could use await Instead of awaited to highlight it more for readability. What do you think?
await
awaited
The text was updated successfully, but these errors were encountered:
See also #25.
Sorry, something went wrong.
@lrhn thanks, closing
No branches or pull requests
Some asynchronous code looks bad when you use a lot of objects and properties.
I would like to see
(await someFuture()).property
assomeFuture().awaited.property
then code above could be rewritten asWe could use
await
Instead ofawaited
to highlight it more for readability.What do you think?
The text was updated successfully, but these errors were encountered: