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

Unified Diff: src/bootstrapper.cc

Issue 2599903003: Implement "global" property of global object
Patch Set: Implement "global" property of global object 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 | « no previous file | test/mjsunit/global.js » ('j') | test/mjsunit/global.js » ('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 fe4721617cd8a2ffa3be6f6448fdd28f5d876907..cbc8aceffa999db2b5ecec9a38d2fdce5c0a1151 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -1148,6 +1148,10 @@ void Genesis::InitializeGlobal(Handle<JSGlobalObject> global_object,
native_context()->set_script_context_table(*script_context_table);
InstallGlobalThisBinding();
+ // https://tc39.github.io/proposal-global
+ Handle<String> global_name = factory->global_string();
+ JSObject::AddProperty(global_object, global_name, global_object, DONT_ENUM);
+
{ // --- O b j e c t ---
Handle<String> object_name = factory->Object_string();
Handle<JSFunction> object_function = isolate->object_function();
« no previous file with comments | « no previous file | test/mjsunit/global.js » ('j') | test/mjsunit/global.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698