Bug 1877406 Comment 5 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

```
oomTest(Debugger);
oomTest(Debugger);
async function* f() {}
f().return();
dumpHeap(globalOfFirstJobInQueue(f));
```

Here's another testcase that does not require `--no-ggc`.

Tested with m-c rev 2cac2f68bfdc, run with `--fuzzing-safe --no-threads --no-baseline --no-ion`.
```
oomTest(Debugger);
oomTest(Debugger);
async function* f() {}
f().return();
dumpHeap(f);
```

Here's another testcase that does not require `--no-ggc`.

Tested with m-c rev 2cac2f68bfdc, run with `--fuzzing-safe --no-threads --no-baseline --no-ion`.

Back to Bug 1877406 Comment 5