Remove use of 'let'

'let' appeared to break one of the builds so changed it to 'var'.
This commit is contained in:
Ashley (Scirra) 2016-10-05 13:44:16 +01:00 committed by GitHub
parent abb6aa544f
commit 52cd38d268

View File

@ -11,7 +11,7 @@ describe("mangle_properties 'debug' option ", function() {
debug: true debug: true
}); });
let stream = Uglify.OutputStream(); var stream = Uglify.OutputStream();
ast.print(stream); ast.print(stream);
var result = stream.toString(); var result = stream.toString();
@ -33,7 +33,7 @@ describe("mangle_properties 'debug' option ", function() {
debug: true debug: true
}); });
let stream = Uglify.OutputStream(); var stream = Uglify.OutputStream();
ast.print(stream); ast.print(stream);
var result = stream.toString(); var result = stream.toString();