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

Unified Diff: src/js/prologue.js

Issue 1411653002: Install iterator meta objects via utils object. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comments Created 5 years, 2 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/js/macros.py ('k') | src/js/regexp.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/js/prologue.js
diff --git a/src/js/prologue.js b/src/js/prologue.js
index e169018910bffe45d994d41095220983f718eebd..0b94e2b6544e5ad9ae593302178f9be9d39e9172 100644
--- a/src/js/prologue.js
+++ b/src/js/prologue.js
@@ -182,6 +182,7 @@ function PostNatives(utils) {
"InnerArrayToLocaleString",
"IsNaN",
"MapEntries",
+ "MapIterator",
"MapIteratorNext",
"MathMax",
"MathMin",
@@ -190,6 +191,8 @@ function PostNatives(utils) {
"ObserveArrayMethods",
"ObserveObjectMethods",
"OwnPropertyKeys",
+ "SameValueZero",
+ "SetIterator",
"SetIteratorNext",
"SetValues",
"SymbolToString",
@@ -230,12 +233,9 @@ function PostExperimentals(utils) {
imports_from_experimental(exports_container);
}
- exports_container = UNDEFINED;
-
- utils.PostExperimentals = UNDEFINED;
- utils.PostDebug = UNDEFINED;
- utils.Import = UNDEFINED;
utils.Export = UNDEFINED;
+ utils.PostDebug = UNDEFINED;
+ utils.PostExperimentals = UNDEFINED;
}
@@ -246,12 +246,14 @@ function PostDebug(utils) {
exports_container = UNDEFINED;
+ utils.Export = UNDEFINED;
+ utils.Import = UNDEFINED;
+ utils.ImportNow = UNDEFINED;
utils.PostDebug = UNDEFINED;
utils.PostExperimentals = UNDEFINED;
- utils.Import = UNDEFINED;
- utils.Export = UNDEFINED;
}
+
// -----------------------------------------------------------------------
%OptimizeObjectForAddingMultipleProperties(utils, 13);
« no previous file with comments | « src/js/macros.py ('k') | src/js/regexp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698