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

Unified Diff: src/bootstrapper.cc

Issue 2465253011: Fastpath some spread-call desugaring. (Closed)
Patch Set: Rebase to master Created 4 years, 1 month 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 | « no previous file | src/contexts.h » ('j') | src/heap/heap.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/bootstrapper.cc
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
index c75961d4bb9357bbc2ca3d0720345813c71d1bb0..a32e3ad2a9a62c297aebe559286c16696888ffc4 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -1349,6 +1349,11 @@ void Genesis::InitializeGlobal(Handle<JSGlobalObject> global_object,
array_iterator_function->shared()->set_instance_class_name(
isolate->heap()->ArrayIterator_string());
+ native_context()->set_initial_array_iterator_prototype(
+ *array_iterator_prototype);
+ native_context()->set_initial_array_iterator_prototype_map(
+ array_iterator_prototype->map());
+
Handle<Map> initial_map(array_iterator_function->initial_map(), isolate);
#define ARRAY_ITERATOR_LIST(V) \
« no previous file with comments | « no previous file | src/contexts.h » ('j') | src/heap/heap.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698