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

Unified Diff: src/compiler/opcodes.h

Issue 2504553003: [es6] Perform the IsConstructor test in GetSuperConstructor. (Closed)
Patch Set: Convert GetSuperConstructor to a new interpreter bytecode 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
Index: src/compiler/opcodes.h
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h
index 99b778c9bce3436cae11afe8632acb88af41147d..e25a48c515f4b35ade0c974b1fe419b4f632ec6c 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -137,7 +137,8 @@
V(JSStoreGlobal) \
V(JSDeleteProperty) \
V(JSHasProperty) \
- V(JSInstanceOf)
+ V(JSInstanceOf) \
+ V(JSGetSuperConstructor)
caitp 2016/11/21 13:52:53 Do we need this to be a JS operator instead of a s
Benedikt Meurer 2016/11/23 04:51:00 It can raise exceptions, thus it needs a proper co
#define JS_CONTEXT_OP_LIST(V) \
V(JSLoadContext) \

Powered by Google App Engine
This is Rietveld 408576698