-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Trailing comment of IIFE function moved around #18539
Copy link
Copy link
Labels
lang:javascriptIssues affecting JSIssues affecting JSlocked-due-to-inactivityPlease open a new issue and fill out the template instead of commenting.Please open a new issue and fill out the template instead of commenting.
Description
Prettier 3.7.4
Playground link
--parser babelInput:
const b = (function (foo) {}/*comment*/)();Output:
const b = (function (foo) {})(/*comment*/);Expected output:
const b = (function (foo) {}/*comment*/)();Why?
The comment is for function, not call.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
lang:javascriptIssues affecting JSIssues affecting JSlocked-due-to-inactivityPlease open a new issue and fill out the template instead of commenting.Please open a new issue and fill out the template instead of commenting.