diff --git a/test/function/iife-comments/main.js b/test/function/iife-comments/main.js index a7b60c3..d691aa1 100644 --- a/test/function/iife-comments/main.js +++ b/test/function/iife-comments/main.js @@ -1,11 +1,13 @@ +function noop () {} + (function () { - alert( '1' ) // line comment after statement + noop( '1' ) // line comment after statement /* BLOCK COMMENT */ - alert( '2' ); + noop( '2' ); // standalone comment })();