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

Unified Diff: test/mjsunit/object-is.js

Issue 9644001: Fix minifier to distinguish regexps from divisions (to some extent). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 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/v8natives.js ('k') | tools/jsmin.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/object-is.js
diff --git a/test/mjsunit/object-is.js b/test/mjsunit/object-is.js
index 6a90fcd320d525bf4e3cc45a4d79a2140e1534ce..b9fdc8442068b4d7c50c06cb0eb8a134b8e9a7f3 100644
--- a/test/mjsunit/object-is.js
+++ b/test/mjsunit/object-is.js
@@ -32,7 +32,7 @@ function TestEgal(expected, x, y) {
assertSame(expected, Object.is(x, y));
}
-var test_set = [ {}, [], 1/0, -1/0, "s", 0, 1/(-1/0), null, undefined ];
+var test_set = [ {}, [], 1/0, -1/0, "s", 0, 0/-1, null, undefined ];
print(test_set);
for (var i = 0; i < test_set.length; i++) {
for (var j = 0; j < test_set.length; j++) {
« no previous file with comments | « src/v8natives.js ('k') | tools/jsmin.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698