[housekeeping] Remove unused test fixtures

We don't use these fixtures, let's just clean them up.
This commit is contained in:
Joe Savona
2024-01-12 12:22:23 -08:00
parent 33118be835
commit bcbbbec1f5
2 changed files with 0 additions and 20 deletions
@@ -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.
@@ -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;
}