Skip to content

Wrap awaits in unary expressions with parens#4315

Merged
j-f1 merged 1 commit intoprettier:masterfrom
ZachGawlik:parens-negate-async
Apr 14, 2018
Merged

Wrap awaits in unary expressions with parens#4315
j-f1 merged 1 commit intoprettier:masterfrom
ZachGawlik:parens-negate-async

Conversation

@ZachGawlik
Copy link
Copy Markdown
Contributor

@ZachGawlik ZachGawlik commented Apr 14, 2018

Fixes #4138 by wrapping await expressions inside of unary expressions. (list of unary operators)

Sample input (currently prettier would leave this unchanged):

const w = !await resolveIdentity(false);
const x = -await resolveIdentity(3);
const y = +await resolveIdentity('3');
const z = typeof await resolveIdentity(false);

Output:

const w = !(await resolveIdentity(false));
const x = -(await resolveIdentity(3));
const y = +(await resolveIdentity('3'));
const z = typeof (await resolveIdentity(false));

Copy link
Copy Markdown
Member

@j-f1 j-f1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks quite a bit clearer 👍

Copy link
Copy Markdown
Member

@lydell lydell left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like this too!

@j-f1 j-f1 merged commit 0a22f5e into prettier:master Apr 14, 2018
@j-f1
Copy link
Copy Markdown
Member

j-f1 commented Apr 14, 2018

Thanks!

@lock lock Bot added the locked-due-to-inactivity Please open a new issue and fill out the template instead of commenting. label Jul 13, 2018
@lock lock Bot locked as resolved and limited conversation to collaborators Jul 13, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

locked-due-to-inactivity Please open a new issue and fill out the template instead of commenting.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

negate async function result will break in safari 11

4 participants