From 5f56da457c93977b2b2db6a5b960849dce8baa53 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Tue, 6 Jan 2015 22:19:34 +1100 Subject: [PATCH] remove old spec tests --- .../transformation/spec-no-for-in-of-assignment/in/actual.js | 3 --- .../transformation/spec-no-for-in-of-assignment/of/actual.js | 3 --- .../transformation/spec-no-for-in-of-assignment/options.json | 3 --- .../transformation/spec/block-hoist-functions/exec.js | 5 ----- 4 files changed, 14 deletions(-) delete mode 100644 test/fixtures/transformation/spec-no-for-in-of-assignment/in/actual.js delete mode 100644 test/fixtures/transformation/spec-no-for-in-of-assignment/of/actual.js delete mode 100644 test/fixtures/transformation/spec-no-for-in-of-assignment/options.json delete mode 100644 test/fixtures/transformation/spec/block-hoist-functions/exec.js diff --git a/test/fixtures/transformation/spec-no-for-in-of-assignment/in/actual.js b/test/fixtures/transformation/spec-no-for-in-of-assignment/in/actual.js deleted file mode 100644 index 167407a7da..0000000000 --- a/test/fixtures/transformation/spec-no-for-in-of-assignment/in/actual.js +++ /dev/null @@ -1,3 +0,0 @@ -for (var i = 0 in obj) { - -} diff --git a/test/fixtures/transformation/spec-no-for-in-of-assignment/of/actual.js b/test/fixtures/transformation/spec-no-for-in-of-assignment/of/actual.js deleted file mode 100644 index 56e4dfef82..0000000000 --- a/test/fixtures/transformation/spec-no-for-in-of-assignment/of/actual.js +++ /dev/null @@ -1,3 +0,0 @@ -for (var i = 0 of obj) { - -} diff --git a/test/fixtures/transformation/spec-no-for-in-of-assignment/options.json b/test/fixtures/transformation/spec-no-for-in-of-assignment/options.json deleted file mode 100644 index c7ae9b8aa4..0000000000 --- a/test/fixtures/transformation/spec-no-for-in-of-assignment/options.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "throws": "No assignments allowed in for-in/of head" -} diff --git a/test/fixtures/transformation/spec/block-hoist-functions/exec.js b/test/fixtures/transformation/spec/block-hoist-functions/exec.js deleted file mode 100644 index f3475e0a9e..0000000000 --- a/test/fixtures/transformation/spec/block-hoist-functions/exec.js +++ /dev/null @@ -1,5 +0,0 @@ -function f() { return 1; } -{ - function f() { return 2; } -} -assert.equal(f(), 1);