// Copyright 2018 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_OBJECTS_JS_PROMISE_H_ #define V8_OBJECTS_JS_PROMISE_H_ #include "include/v8-promise.h" #include "src/objects/js-objects.h" #include "src/objects/promise.h" #include "torque-generated/bit-fields.h" // Has to be the last include (doesn't have include guards): #include "src/objects/object-macros.h" namespace v8 { namespace internal { #include "torque-generated/src/objects/js-promise-tq.inc" // Representation of promise objects in the specification. Our layout of // JSPromise differs a bit from the layout in the specification, for example // there's only a single list of PromiseReaction objects, instead of separate // lists for fulfill and reject reactions. The PromiseReaction carries both // callbacks from the start, and is eventually morphed into the proper kind of // PromiseReactionJobTask when the JSPromise is settled. // // We also overlay the result and reactions fields on the JSPromise, since // the reactions are only necessary for pending promises, whereas the result // is only meaningful for settled promises. class JSPromise : public TorqueGeneratedJSPromise<JSPromise, JSObjectWithEmbedderSlots> { … }; } // namespace internal } // namespace v8 #include "src/objects/object-macros-undef.h" #endif // V8_OBJECTS_JS_PROMISE_H_