Merge branch 'master' into harmony

This commit is contained in:
Richard van Velzen
2015-10-20 20:12:10 +02:00
7 changed files with 102 additions and 11 deletions

View File

@@ -194,7 +194,7 @@ function parse_test(file) {
function make_code(ast, beautify) {
if (arguments.length == 1) beautify = true;
var stream = U.OutputStream({ beautify: beautify });
var stream = U.OutputStream({ beautify: beautify, inline_script: true });
ast.print(stream);
return stream.get();
}