Reviewers: aandrey,

Description:
Remove stray edits in r24335.

TBR=aand...@chromium.org

Please review this at https://codereview.chromium.org/615053002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+0, -4 lines):
  M src/bootstrapper.cc
  M src/contexts.h


Index: src/bootstrapper.cc
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
index 16f030803f5a80f4058b00081bb8ce381f4154da..250562a2aa17a0a8c47dfc8567b449b5ccade0f0 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -1538,8 +1538,6 @@ void Genesis::InstallNativeFunctions() {
   INSTALL_NATIVE(JSFunction, "PromiseChain", promise_chain);
   INSTALL_NATIVE(JSFunction, "PromiseCatch", promise_catch);
   INSTALL_NATIVE(JSFunction, "PromiseThen", promise_then);
-  INSTALL_NATIVE(JSFunction, "PromiseHasRejectHandler",
-                 promise_has_reject_handler);

   INSTALL_NATIVE(JSFunction, "NotifyChange", observers_notify_change);
INSTALL_NATIVE(JSFunction, "EnqueueSpliceRecord", observers_enqueue_splice);
Index: src/contexts.h
diff --git a/src/contexts.h b/src/contexts.h
index 38bdf84e6222bdde039f04aaf5f22b42924ffa8e..ac25e48853080f384600f0417e9073aba50daa69 100644
--- a/src/contexts.h
+++ b/src/contexts.h
@@ -180,7 +180,6 @@ enum BindingFlags {
V(PROMISE_CHAIN_INDEX, JSFunction, promise_chain) \ V(PROMISE_CATCH_INDEX, JSFunction, promise_catch) \ V(PROMISE_THEN_INDEX, JSFunction, promise_then) \ - V(PROMISE_HAS_REJECT_HANDLER_INDEX, JSFunction, promise_has_reject_handler) \ V(TO_COMPLETE_PROPERTY_DESCRIPTOR_INDEX, JSFunction, \ to_complete_property_descriptor) \ V(DERIVED_HAS_TRAP_INDEX, JSFunction, derived_has_trap) \
@@ -378,7 +377,6 @@ class Context: public FixedArray {
     PROMISE_CHAIN_INDEX,
     PROMISE_CATCH_INDEX,
     PROMISE_THEN_INDEX,
-    PROMISE_HAS_REJECT_HANDLER_INDEX,
     TO_COMPLETE_PROPERTY_DESCRIPTOR_INDEX,
     DERIVED_HAS_TRAP_INDEX,
     DERIVED_GET_TRAP_INDEX,


--
--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to