Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 335 Bytes

File metadata and controls

17 lines (13 loc) · 335 Bytes

Fix missing parentheses on async inside for..of (#10781 by @fisker)

// Input
for ((async) of []);

// Prettier stable
for (async of []);

// Prettier stable (second format)
SyntaxError: Unexpected token, expected "=>" (1:15)
> 1 | for (async of []);

// Prettier main
for ((async) of []);