Add missing line break after copyright header and trailing semicolon at the end of the minified version.

1.7/enhancement_8685
Mathias Bynens 2011-01-18 23:14:32 +01:00
parent 80928cc6fb
commit c5ec1cb3e5
1 changed files with 2 additions and 2 deletions

View File

@ -143,7 +143,7 @@ function show_copyright(comments) {
if (c.type == "comment1") {
ret += "//" + c.value + "\n";
} else {
ret += "/*" + c.value + "*/";
ret += "/*" + c.value + "*/\n";
}
}
return ret;
@ -181,7 +181,7 @@ function squeeze_it(code) {
});
if (options.ast)
return sys.inspect(ast, null, null);
result += time_it("generate", function(){ return pro.gen_code(ast, options.beautify && options.beautify_options) });
result += time_it("generate", function(){ return pro.gen_code(ast, options.beautify && options.beautify_options) }) + ";";
return result;
} catch(ex) {
sys.debug(ex.stack);