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

Unified Diff: src/js/typedarray.js

Issue 1738033002: Test262 roll, 2016-2-23 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix status file duplications Created 4 years, 10 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 | « DEPS ('k') | test/test262/test262.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/js/typedarray.js
diff --git a/src/js/typedarray.js b/src/js/typedarray.js
index 3d500a379ec8786d324600b6c9a77b8f54199b61..95e7d14ad9fd6e1249c34e24a885e2e8e5b04ae7 100644
--- a/src/js/typedarray.js
+++ b/src/js/typedarray.js
@@ -763,9 +763,9 @@ function TypedArrayOf() {
function TypedArrayFrom(source, mapfn, thisArg) {
// TODO(littledan): Investigate if there is a receiver which could be
// faster to accumulate on than Array, e.g., a TypedVector.
- // TODO(littledan): Rewrite this code to ensure that things happen
- // in the right order, e.g., the constructor needs to be called before
- // the mapping function on array-likes.
+ // TODO(littledan) BUG(v8:4782): Rewrite this code to ensure that things
+ // happen in the right order, e.g., the constructor needs to be called
+ // before the mapping function on array-likes.
var array = %_Call(ArrayFrom, GlobalArray, source, mapfn, thisArg);
return TypedArrayCreate(this, array);
}
« no previous file with comments | « DEPS ('k') | test/test262/test262.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698