[housekeeping] Remove unused test fixtures
We don't use these fixtures, let's just clean them up.
Joe Savona committed
Jan 12, 2024 at 12:22 UTC
bcbbbec1f58eeb714ded2b6d824344490b323fb0
2 files changed
-20
compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/README.md
deleted
-5
@@ -1,5 +0,0 @@
1
-## TODOs
2
-
3
-This directory contains files that are currently crashing the compiler and
4
-should be moved to `../transform/` as a potential new fixture once the crash
5
-is fixed.
compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/cfg-for-of-statement-with-assignment.js
deleted
-15
@@ -1,15 +0,0 @@
1
-// @Out DumpCFG
2
-function useForOfStatement(x) {
3
- "use forget";
4
- const items = [];
5
- let item;
6
- for (item of x) {
7
- if (shouldBreak()) {
8
- break;
9
- } else if (shouldContinue()) {
10
- continue;
11
- }
12
- items.push(item);
13
- }
14
- return items;
15
-}