From 054443c46e02038bf9c1758c161a9fb97c3af523 Mon Sep 17 00:00:00 2001 From: Michael Ficarra Date: Thu, 13 Jun 2013 13:35:40 -0500 Subject: [PATCH] rebuild #3029 --- lib/coffee-script/nodes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/coffee-script/nodes.js b/lib/coffee-script/nodes.js index 0edbcf61..340970cf 100644 --- a/lib/coffee-script/nodes.js +++ b/lib/coffee-script/nodes.js @@ -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;