Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index c1e08a2d78eb1faa8073860e1484534f3071fb2f..08cd44dcf363985edc870badef8ee3f560026b6c 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -6436,9 +6436,9 @@ class Script: public Struct { |
// function from which eval was called. |
DECL_ACCESSORS(eval_from_shared, Object) |
- // [eval_from_instructions_offset]: the instruction offset in the code for the |
- // function from which eval was called where eval was called. |
- DECL_INT_ACCESSORS(eval_from_instructions_offset) |
+ // [eval_from_position]: the source position in the code for the |
+ // function from which eval was called. |
+ DECL_INT_ACCESSORS(eval_from_position) |
// [shared_function_infos]: weak fixed array containing all shared |
// function infos created from this script. |
@@ -6525,10 +6525,10 @@ class Script: public Struct { |
static const int kLineEndsOffset = kTypeOffset + kPointerSize; |
static const int kIdOffset = kLineEndsOffset + kPointerSize; |
static const int kEvalFromSharedOffset = kIdOffset + kPointerSize; |
- static const int kEvalFrominstructionsOffsetOffset = |
+ static const int kEvalFromPositionOffset = |
kEvalFromSharedOffset + kPointerSize; |
static const int kSharedFunctionInfosOffset = |
- kEvalFrominstructionsOffsetOffset + kPointerSize; |
+ kEvalFromPositionOffset + kPointerSize; |
static const int kFlagsOffset = kSharedFunctionInfosOffset + kPointerSize; |
static const int kSourceUrlOffset = kFlagsOffset + kPointerSize; |
static const int kSourceMappingUrlOffset = kSourceUrlOffset + kPointerSize; |