| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 5f2a1446bc1a3b68c3744877f9ed0e0097740df2..2bf79baf6928f1dfc3e7acea4b9b8ec184b2aa6b 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -10111,6 +10111,7 @@ class StackFrameInfo : public Struct {
|
| DECL_BOOLEAN_ACCESSORS(is_constructor)
|
| DECL_BOOLEAN_ACCESSORS(is_wasm)
|
| DECL_INT_ACCESSORS(flag)
|
| + DECL_INT_ACCESSORS(options)
|
|
|
| DECLARE_CAST(StackFrameInfo)
|
|
|
| @@ -10127,7 +10128,8 @@ class StackFrameInfo : public Struct {
|
| static const int kFunctionNameIndex =
|
| kScriptNameOrSourceUrlIndex + kPointerSize;
|
| static const int kFlagIndex = kFunctionNameIndex + kPointerSize;
|
| - static const int kSize = kFlagIndex + kPointerSize;
|
| + static const int kOptionsIndex = kFlagIndex + kPointerSize;
|
| + static const int kSize = kOptionsIndex + kPointerSize;
|
|
|
| private:
|
| // Bit position in the flag, from least significant bit position.
|
|
|