Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(612)

Unified Diff: test/mjsunit/es6/typedarray-copywithin.js

Issue 2793233003: Revert of [typedarrays] Check detached buffer at start of typed array methods (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/runtime/runtime-typedarray.cc ('k') | test/mjsunit/es6/typedarray-every.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/es6/typedarray-copywithin.js
diff --git a/test/mjsunit/es6/typedarray-copywithin.js b/test/mjsunit/es6/typedarray-copywithin.js
index c52a38625b03b707f95249874273e158068417d0..1e63508393f4c1b63897c638ee1a0ac007da5bb0 100644
--- a/test/mjsunit/es6/typedarray-copywithin.js
+++ b/test/mjsunit/es6/typedarray-copywithin.js
@@ -240,6 +240,8 @@
var array = new constructor([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
%ArrayBufferNeuter(array.buffer);
- assertThrows(() => array.copyWithin(tmp, tmp, tmp), TypeError);
+ // TODO(caitp): this should throw due to being invoked on a TypedArray with a
+ // detached buffer (per v8:4648).
+ array.copyWithin(tmp, tmp, tmp);
assertEquals(0, array.length, "array.[[ViewedArrayBuffer]] is detached");
});
« no previous file with comments | « src/runtime/runtime-typedarray.cc ('k') | test/mjsunit/es6/typedarray-every.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698