This commit is contained in:
Michael Ficarra 2013-06-13 13:38:13 -05:00
parent 054443c46e
commit ba7cb3ab69
2 changed files with 2 additions and 2 deletions

View File

@ -826,7 +826,7 @@
if ((level || o.level) === LEVEL_TOP) {
code = o.indent + code;
}
return [this.makeCode("\n", this.makeCode(code))];
return [this.makeCode("\n"), this.makeCode(code)];
};
return Comment;

View File

@ -557,7 +557,7 @@ exports.Comment = class Comment extends Base
compileNode: (o, level) ->
code = "/*#{multident @comment, @tab}#{if '\n' in @comment then "\n#{@tab}" else ''}*/"
code = o.indent + code if (level or o.level) is LEVEL_TOP
[@makeCode "\n", @makeCode code]
[@makeCode("\n"), @makeCode(code)]
#### Call