aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMihai Bazon <mihai@bazon.net>2012-09-26 19:52:32 +0300
committerMihai Bazon <mihai@bazon.net>2012-09-26 19:52:32 +0300
commit13278c6649189ffea363ac51be5f6b9738e04ff7 (patch)
tree7741a08ca14adeb70d50f8ab32225da52cd3d872 /test
parent15d58f5917cba980754553a1578c9d339cc7b419 (diff)
downloadtracifyjs-13278c6649189ffea363ac51be5f6b9738e04ff7.tar.gz
tracifyjs-13278c6649189ffea363ac51be5f6b9738e04ff7.zip
removed the "squeeze" method (it's now effectively "transform")
Diffstat (limited to 'test')
-rwxr-xr-xtest/run-tests.js2
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) {