Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 21164a8861dbcd535f459ac8cbf869aff746a715..f90062fec3a32585ac6f39743ad5c3ae676b13ea 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -10150,6 +10150,7 @@ class StackFrameInfo : public Struct { |
DECL_BOOLEAN_ACCESSORS(is_constructor) |
DECL_BOOLEAN_ACCESSORS(is_wasm) |
DECL_INT_ACCESSORS(flag) |
+ DECL_INT_ACCESSORS(id) |
DECLARE_CAST(StackFrameInfo) |
@@ -10166,7 +10167,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 kIdIndex = kFlagIndex + kPointerSize; |
+ static const int kSize = kIdIndex + kPointerSize; |
private: |
// Bit position in the flag, from least significant bit position. |