ec2f4acf4b
The incremental migration required several pairs of functionally equivalent macros. This patch consolidates everything onto the respective new version and drops the obsolete versions. Bug: v8:3770 Change-Id: I4fb05ff223e8250c83a13f46840810b0893f410b Reviewed-on: https://chromium-review.googlesource.com/c/1398223 Reviewed-by: Jakob Gruber <jgruber@chromium.org> Reviewed-by: Andreas Haas <ahaas@chromium.org> Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Commit-Queue: Jakob Kummerow <jkummerow@chromium.org> Cr-Commit-Position: refs/heads/master@{#58659}
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
// 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_INL_H_
|
|
#define V8_OBJECTS_JS_PROMISE_INL_H_
|
|
|
|
#include "src/objects/js-promise.h"
|
|
|
|
#include "src/objects-inl.h" // Needed for write barriers
|
|
#include "src/objects.h"
|
|
|
|
// Has to be the last include (doesn't have include guards):
|
|
#include "src/objects/object-macros.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
OBJECT_CONSTRUCTORS_IMPL(JSPromise, JSObject)
|
|
CAST_ACCESSOR(JSPromise)
|
|
|
|
ACCESSORS(JSPromise, reactions_or_result, Object, kReactionsOrResultOffset)
|
|
SMI_ACCESSORS(JSPromise, flags, kFlagsOffset)
|
|
BOOL_ACCESSORS(JSPromise, flags, has_handler, kHasHandlerBit)
|
|
BOOL_ACCESSORS(JSPromise, flags, handled_hint, kHandledHintBit)
|
|
|
|
Object JSPromise::result() const {
|
|
DCHECK_NE(Promise::kPending, status());
|
|
return reactions_or_result();
|
|
}
|
|
|
|
Object JSPromise::reactions() const {
|
|
DCHECK_EQ(Promise::kPending, status());
|
|
return reactions_or_result();
|
|
}
|
|
|
|
} // namespace internal
|
|
} // namespace v8
|
|
|
|
#include "src/objects/object-macros-undef.h"
|
|
|
|
#endif // V8_OBJECTS_JS_PROMISE_INL_H_
|