From 46d64422877559b60e6210d2e0b733c066d461d5 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Thu, 21 May 2015 15:09:13 -0400 Subject: [PATCH] fix test again --- test/function/iife-comments/main.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 })();