mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
rebuild #3029
This commit is contained in:
parent
c8dae22cb0
commit
054443c46e
1 changed files with 2 additions and 2 deletions
|
@ -822,11 +822,11 @@
|
|||
|
||||
Comment.prototype.compileNode = function(o, level) {
|
||||
var code;
|
||||
code = "/*" + (multident(this.comment, this.tab)) + (__indexOf.call(this.comment, '\n') >= 0 ? "\n" + this.tab : '') + "*/\n";
|
||||
code = "/*" + (multident(this.comment, this.tab)) + (__indexOf.call(this.comment, '\n') >= 0 ? "\n" + this.tab : '') + "*/";
|
||||
if ((level || o.level) === LEVEL_TOP) {
|
||||
code = o.indent + code;
|
||||
}
|
||||
return [this.makeCode(code)];
|
||||
return [this.makeCode("\n", this.makeCode(code))];
|
||||
};
|
||||
|
||||
return Comment;
|
||||
|
|
Loading…
Reference in a new issue