From d6152e6a76908223cace651898e12a3b3c9a445d Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Wed, 19 May 2021 22:11:39 +0100 Subject: fix corner case in `collapse_vars` (#4946) --- test/reduce.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/reduce.js') diff --git a/test/reduce.js b/test/reduce.js index 3f154fa7..15f869e5 100644 --- a/test/reduce.js +++ b/test/reduce.js @@ -46,7 +46,7 @@ module.exports = function reduce_test(testcase, minify_options, reduce_options) if (verbose) { log("// Node.js " + process.version + " on " + os.platform() + " " + os.arch()); } - if (differs.error && [ "DefaultsError", "SyntaxError" ].indexOf(differs.error.name) < 0) { + if (differs && differs.error && [ "DefaultsError", "SyntaxError" ].indexOf(differs.error.name) < 0) { test_for_diff = test_minify; differs = test_for_diff(testcase, minify_options, result_cache, max_timeout); } -- cgit v1.2.3