From 13278c6649189ffea363ac51be5f6b9738e04ff7 Mon Sep 17 00:00:00 2001 From: Mihai Bazon Date: Wed, 26 Sep 2012 19:52:32 +0300 Subject: removed the "squeeze" method (it's now effectively "transform") --- test/run-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/run-tests.js b/test/run-tests.js index 32b6c423..8822f2a5 100755 --- a/test/run-tests.js +++ b/test/run-tests.js @@ -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) { -- cgit v1.2.3