diff --git a/compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/README.md b/compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/README.md deleted file mode 100644 index 2570d6a92f..0000000000 --- a/compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/README.md +++ /dev/null @@ -1,5 +0,0 @@ -## TODOs - -This directory contains files that are currently crashing the compiler and -should be moved to `../transform/` as a potential new fixture once the crash -is fixed. diff --git a/compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/cfg-for-of-statement-with-assignment.js b/compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/cfg-for-of-statement-with-assignment.js deleted file mode 100644 index 2b96892237..0000000000 --- a/compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/cfg-for-of-statement-with-assignment.js +++ /dev/null @@ -1,15 +0,0 @@ -// @Out DumpCFG -function useForOfStatement(x) { - "use forget"; - const items = []; - let item; - for (item of x) { - if (shouldBreak()) { - break; - } else if (shouldContinue()) { - continue; - } - items.push(item); - } - return items; -}