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

Unified Diff: test/mjsunit/serialize-ic.js

Issue 587213002: Fix serializing ICs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: added TODO Created 6 years, 3 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/serialize.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/serialize-ic.js
diff --git a/test/mjsunit/deserialize-reference.js b/test/mjsunit/serialize-ic.js
similarity index 78%
copy from test/mjsunit/deserialize-reference.js
copy to test/mjsunit/serialize-ic.js
index b03201315932eab59e38c135d219192e6dcdf0eb..8f20b2758fd6eb0c3002fb50ce164eab88ea95bb 100644
--- a/test/mjsunit/deserialize-reference.js
+++ b/test/mjsunit/serialize-ic.js
@@ -4,5 +4,6 @@
// Flags: --cache=code --serialize-toplevel
-var a = "123";
-assertEquals(a, "123");
+var foo = [];
+foo[0] = "bar";
+assertEquals(["bar"], foo);
« no previous file with comments | « src/serialize.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698