mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
[housekeeping] Remove unused test fixtures
We don't use these fixtures, let's just clean them up.
This commit is contained in:
@@ -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.
|
||||
-15
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user