1 // line comment, no indent
4 * block comment, no indent
7 // line comment, 1 indent
9 * block comment, 1 indent
12 // line comment, 2 indents
14 * block comment, 2 indent
17 /* block single line, 3 indents */
29 /* block single line, no indent */
34 var obj = { /* test trailing space after multi line comment */
35 then: function( /* fnDone, fnFail, fnProgress */ ) {
36 var fns = arguments; // test space before comment
40 function foo() { // single line after token that requires line break
41 if (false) { /* multi line after token that requires line break */
48 var pfun = new PFunction(function(hello /*, foo )
49 ,bar { */ , world) {});