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

Unified Diff: src/bootstrapper.cc

Issue 1417063011: [runtime] support new Proxy() instead of Proxy.create and install getPrototypeOf trap (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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/js/messages.js » ('j') | src/objects.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 c609e578d4353f976932632ff301429d457dcbf6..6b7a304df2e31a21c8cb210bcf6714b8bfe328fa 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -1213,6 +1213,12 @@ void Genesis::InitializeGlobal(Handle<JSGlobalObject> global_object,
}
+ { // --- P r o x y ---
+ InstallFunction(global, "Proxy", JS_PROXY_TYPE, JSProxy::kSize,
+ isolate->initial_object_prototype(), Builtins::kIllegal);
+ }
+
+
{ // -- R e g E x p
// Builtin functions for RegExp.prototype.
Handle<JSFunction> regexp_fun =
« no previous file with comments | « no previous file | src/js/messages.js » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698