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

Unified Diff: test/mjsunit/harmony/to-string.js

Issue 2137203002: [intrinsics] Remove obsolete intrinsics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Really nuke TO_NAME. Created 4 years, 5 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 | « test/mjsunit/harmony/to-primitive.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/to-string.js
diff --git a/test/mjsunit/harmony/to-string.js b/test/mjsunit/harmony/to-string.js
index 103ba89d1dca1787488eedc9684363c35b459e42..dfe36c2dd916aeb3c756ab7c43c9afc128cb2099 100644
--- a/test/mjsunit/harmony/to-string.js
+++ b/test/mjsunit/harmony/to-string.js
@@ -50,5 +50,5 @@ assertEquals("string", %ToString(d));
assertEquals("string", %_ToString(d));
var e = new Date(0);
-assertEquals(e.toString(), %ToName(e));
-assertEquals(e.toString(), %_ToName(e));
+assertEquals(e.toString(), %ToString(e));
+assertEquals(e.toString(), %_ToString(e));
« no previous file with comments | « test/mjsunit/harmony/to-primitive.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698