diff --git a/test.js b/test.js deleted file mode 100644 index 522f46589d..0000000000 --- a/test.js +++ /dev/null @@ -1,7 +0,0 @@ -class Example { - constructor() { - var Example; - } -} - -let t = new Example(); diff --git a/test/core/fixtures/transformation/spec.function-name/basic/actual.js b/test/core/fixtures/transformation/spec.function-name/basic/actual.js index be005cf8aa..4d77927a9c 100644 --- a/test/core/fixtures/transformation/spec.function-name/basic/actual.js +++ b/test/core/fixtures/transformation/spec.function-name/basic/actual.js @@ -1,5 +1,3 @@ var g = function () { doSmth(); }; - -var h = function (h) {}; diff --git a/test/core/fixtures/transformation/spec.function-name/basic/expected.js b/test/core/fixtures/transformation/spec.function-name/basic/expected.js index d055852eb2..68d07b7ae5 100644 --- a/test/core/fixtures/transformation/spec.function-name/basic/expected.js +++ b/test/core/fixtures/transformation/spec.function-name/basic/expected.js @@ -3,5 +3,3 @@ var g = function g() { doSmth(); }; - -var h = function h(h) {};