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

Side by Side Diff: src/builtins/builtins.h

Issue 2633443002: [promisehook] Pass deferred promise to Before/After callback (Closed)
Patch Set: Remove adaptor Created 3 years, 11 months 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 unified diff | Download patch
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-promise.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_BUILTINS_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 TFJ(PromiseConstructor, 1) \ 629 TFJ(PromiseConstructor, 1) \
630 TFJ(PromiseInternalConstructor, 1) \ 630 TFJ(PromiseInternalConstructor, 1) \
631 TFJ(IsPromise, 1) \ 631 TFJ(IsPromise, 1) \
632 TFJ(PromiseResolveClosure, 1) \ 632 TFJ(PromiseResolveClosure, 1) \
633 TFJ(PromiseRejectClosure, 1) \ 633 TFJ(PromiseRejectClosure, 1) \
634 TFJ(PromiseThen, 2) \ 634 TFJ(PromiseThen, 2) \
635 TFJ(PromiseCatch, 1) \ 635 TFJ(PromiseCatch, 1) \
636 TFJ(PerformPromiseThen, 4) \ 636 TFJ(PerformPromiseThen, 4) \
637 TFJ(ResolvePromise, 2) \ 637 TFJ(ResolvePromise, 2) \
638 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \ 638 TFS(PromiseHandleReject, BUILTIN, kNoExtraICState, PromiseHandleReject) \
639 TFJ(PromiseHandle, 6) \ 639 TFJ(PromiseHandle, 5) \
640 TFJ(PromiseResolve, 1) \ 640 TFJ(PromiseResolve, 1) \
641 TFJ(PromiseReject, 1) \ 641 TFJ(PromiseReject, 1) \
642 \ 642 \
643 /* Proxy */ \ 643 /* Proxy */ \
644 CPP(ProxyConstructor) \ 644 CPP(ProxyConstructor) \
645 CPP(ProxyConstructor_ConstructStub) \ 645 CPP(ProxyConstructor_ConstructStub) \
646 \ 646 \
647 /* Reflect */ \ 647 /* Reflect */ \
648 ASM(ReflectApply) \ 648 ASM(ReflectApply) \
649 ASM(ReflectConstruct) \ 649 ASM(ReflectConstruct) \
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 917
918 friend class Isolate; 918 friend class Isolate;
919 919
920 DISALLOW_COPY_AND_ASSIGN(Builtins); 920 DISALLOW_COPY_AND_ASSIGN(Builtins);
921 }; 921 };
922 922
923 } // namespace internal 923 } // namespace internal
924 } // namespace v8 924 } // namespace v8
925 925
926 #endif // V8_BUILTINS_BUILTINS_H_ 926 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-promise.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698