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

Unified Diff: src/array.js

Issue 10559005: Always invoke the default Array.sort functions from builtin functions. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 6 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 | « no previous file | test/mjsunit/regress/regress-builtin-array-op.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/array.js
===================================================================
--- src/array.js (revision 11831)
+++ src/array.js (working copy)
@@ -62,7 +62,7 @@
}
}
}
- keys.sort(function(a, b) { return a - b; });
+ ArraySort.call(keys, function(a, b) { return a - b; });
Vyacheslav Egorov (Google) 2012/10/19 12:11:51 What happens here if I overwrite Function.prototyp
return keys;
}
« no previous file with comments | « no previous file | test/mjsunit/regress/regress-builtin-array-op.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698