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