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

Unified Diff: src/runtime/runtime.h

Issue 1509603005: [runtime] [proxy] implement [[Construct]] (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2015-12-03_JSProxy_Call_1499593003
Patch Set: fimpsing Created 5 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 | « src/ppc/builtins-ppc.cc ('k') | src/runtime/runtime-proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/runtime.h
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index ad3c21e5b32b61ded92a56d2b1be6e011881227e..17c6b182f202dcb553a380450f4680269872d007 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -537,10 +537,11 @@ namespace internal {
F(BitwiseXor, 2, 1) \
F(BitwiseXor_Strong, 2, 1)
-#define FOR_EACH_INTRINSIC_PROXY(F) \
- F(IsJSProxy, 1, 1) \
- F(JSProxyCall, -1 /* >= 2 */, 1) \
- F(GetHandler, 1, 1) \
+#define FOR_EACH_INTRINSIC_PROXY(F) \
+ F(IsJSProxy, 1, 1) \
+ F(JSProxyCall, -1 /* >= 2 */, 1) \
+ F(JSProxyConstruct, -1 /* >= 3 */, 1) \
+ F(GetHandler, 1, 1) \
F(RevokeProxy, 1, 1)
#define FOR_EACH_INTRINSIC_REGEXP(F) \
« no previous file with comments | « src/ppc/builtins-ppc.cc ('k') | src/runtime/runtime-proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698