removed the "squeeze" method (it's now effectively "transform")

This commit is contained in:
Mihai Bazon
2012-09-26 19:52:32 +03:00
parent 15d58f5917
commit 13278c6649
3 changed files with 8 additions and 14 deletions

View File

@@ -64,7 +64,7 @@ function run_compress_tests() {
var cmp = new U.Compressor(test.options || {}, true);
var expect = make_code(as_toplevel(test.expect), false);
var input = as_toplevel(test.input);
var output = input.squeeze(cmp);
var output = input.transform(cmp);
output.figure_out_scope();
output = make_code(output, false);
if (expect != output) {