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

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

Issue 1324713002: [es6] Implement Date.prototype[@@toPrimitive] as C++ builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address Michi's comments. Created 5 years, 4 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-object.cc ('k') | test/mjsunit/harmony/to-number.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/to-name.js
diff --git a/test/mjsunit/harmony/to-name.js b/test/mjsunit/harmony/to-name.js
index c15bfb5d29a92f28a919e8a2f3688c6c8f58729e..6d5d64e5e418766880937fcb47357c1eb9cfd52e 100644
--- a/test/mjsunit/harmony/to-name.js
+++ b/test/mjsunit/harmony/to-name.js
@@ -48,3 +48,7 @@ var d = {
};
assertEquals("string", %ToName(d));
assertEquals("string", %_ToName(d));
+
+var e = new Date(0);
+assertEquals(e.toString(), %ToName(e));
+assertEquals(e.toString(), %_ToName(e));
« no previous file with comments | « src/runtime/runtime-object.cc ('k') | test/mjsunit/harmony/to-number.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698