diff options
author | Mihai Bazon <mihai@bazon.net> | 2012-09-26 19:52:32 +0300 |
---|---|---|
committer | Mihai Bazon <mihai@bazon.net> | 2012-09-26 19:52:32 +0300 |
commit | 13278c6649189ffea363ac51be5f6b9738e04ff7 (patch) | |
tree | 7741a08ca14adeb70d50f8ab32225da52cd3d872 /test | |
parent | 15d58f5917cba980754553a1578c9d339cc7b419 (diff) | |
download | tracifyjs-13278c6649189ffea363ac51be5f6b9738e04ff7.tar.gz tracifyjs-13278c6649189ffea363ac51be5f6b9738e04ff7.zip |
removed the "squeeze" method (it's now effectively "transform")
Diffstat (limited to 'test')
-rwxr-xr-x | test/run-tests.js | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |