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

Unified Diff: test/mjsunit/modules-namespace2.js

Issue 2578053003: [modules] Remove @@iterator on namespace objects. (Closed)
Patch Set: Skip out-of-date tests262 tests. Created 4 years 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/modules-namespace1.js ('k') | test/test262/test262.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/modules-namespace2.js
diff --git a/test/mjsunit/modules-namespace2.js b/test/mjsunit/modules-namespace2.js
index 43529b916dfb8cb321ff86c36327be098368a95a..03c90a0099e8305b145d97c716d03b79a9c14328 100644
--- a/test/mjsunit/modules-namespace2.js
+++ b/test/mjsunit/modules-namespace2.js
@@ -5,10 +5,8 @@
// MODULE
assertEquals(
- ["b", "c", "get_a", "ns2", "set_a", "zzz",
- Symbol.toStringTag, Symbol.iterator],
+ ["b", "c", "get_a", "ns2", "set_a", "zzz", Symbol.toStringTag],
Reflect.ownKeys(ns));
-assertEquals(["b", "c", "get_a", "ns2", "set_a", "zzz"], [...ns]);
import * as foo from "modules-skip-1.js";
assertSame(foo.a, ns.b);
« no previous file with comments | « test/mjsunit/modules-namespace1.js ('k') | test/test262/test262.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698