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

Unified Diff: test/mjsunit/function-call.js

Issue 6907019: Fix mjsunit failure from last commit. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/function-call.js
===================================================================
--- test/mjsunit/function-call.js (revision 7763)
+++ test/mjsunit/function-call.js (working copy)
@@ -32,8 +32,6 @@
Object.prototype.hasOwnProperty,
Object.prototype.isPrototypeOf,
Object.prototype.propertyIsEnumerable,
- Array.prototype.toString,
- Array.prototype.toLocaleString,
Array.prototype.concat,
Array.prototype.join,
Array.prototype.pop,
@@ -77,7 +75,9 @@
// type, but since this change will allow call to be invoked with undefined
// or null as this we still explicitly test that we throw on these here.
var non_generic =
- [Function.prototype.toString,
+ [Array.prototype.toString,
+ Array.prototype.toLocaleString,
+ Function.prototype.toString,
Function.prototype.call,
Function.prototype.apply,
String.prototype.toString,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698