Browse Source

fix test again

contingency-plan
Rich Harris 10 years ago
parent
commit
46d6442287
  1. 6
      test/function/iife-comments/main.js

6
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
})();

Loading…
Cancel
Save