2018-01-09 15:36:42 +01:00

19 lines
276 B
JavaScript

function foo() {
while (true) {
switch (2) {
case 0: {
if (true) {
return;
}
const stuff = new Map();
const data = 0;
stuff.forEach(() => {
const d = data;
});
break;
}
}
}
}