| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index b76d3357a32e9f4c2fc3750895f75471d3fd5909..7238ee1587e1a535a533541ad4221a5e410f2bb2 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -6606,7 +6606,6 @@ class JSPromise;
|
| // Struct to hold state required for PromiseReactionJob.
|
| class PromiseReactionJobInfo : public Struct {
|
| public:
|
| - DECL_ACCESSORS(promise, JSPromise)
|
| DECL_ACCESSORS(value, Object)
|
| DECL_ACCESSORS(tasks, Object)
|
|
|
| @@ -6621,8 +6620,7 @@ class PromiseReactionJobInfo : public Struct {
|
|
|
| DECL_ACCESSORS(context, Context)
|
|
|
| - static const int kPromiseOffset = Struct::kHeaderSize;
|
| - static const int kValueOffset = kPromiseOffset + kPointerSize;
|
| + static const int kValueOffset = Struct::kHeaderSize;
|
| static const int kTasksOffset = kValueOffset + kPointerSize;
|
| static const int kDeferredPromiseOffset = kTasksOffset + kPointerSize;
|
| static const int kDeferredOnResolveOffset =
|
|
|