Leo Balter d1261bb49d Update files for the curation process
Remove more stress tests with existing coverage or out of context for test262
2018-09-11 18:20:20 -04:00

18 lines
344 B
JavaScript

// Reviewed
Object.defineProperty(Array.prototype, '0', {
get() { },
set() { throw new Error(); }
});
var __v_7772 = "GGCCGGGTAAAGTGGCTCACGCCTGTAATCCCAGCACTTTACCCCCCGAGGCGGGCGGA";
var exception;
try {
__v_7772.match(/[cgt]gggtaaa|tttaccc[acg]/ig);
} catch (e) {
exception = e;
}
if (exception != "Error")
throw "FAILED";