| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 198ab36c5090c7d17661cc8a395056b19ce99bec..433500e7331b5dc1a6c4f137a3db69bdc53d0976 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -6512,9 +6512,6 @@ class Script: public Struct {
|
| // extracted.
|
| DECL_ACCESSORS(column_offset, Smi)
|
|
|
| - // [data]: additional data associated with this script.
|
| - DECL_ACCESSORS(data, Object)
|
| -
|
| // [context_data]: context data for the context this script was compiled in.
|
| DECL_ACCESSORS(context_data, Object)
|
|
|
| @@ -6568,8 +6565,7 @@ class Script: public Struct {
|
| static const int kNameOffset = kSourceOffset + kPointerSize;
|
| static const int kLineOffsetOffset = kNameOffset + kPointerSize;
|
| static const int kColumnOffsetOffset = kLineOffsetOffset + kPointerSize;
|
| - static const int kDataOffset = kColumnOffsetOffset + kPointerSize;
|
| - static const int kContextOffset = kDataOffset + kPointerSize;
|
| + static const int kContextOffset = kColumnOffsetOffset + kPointerSize;
|
| static const int kWrapperOffset = kContextOffset + kPointerSize;
|
| static const int kTypeOffset = kWrapperOffset + kPointerSize;
|
| static const int kLineEndsOffset = kTypeOffset + kPointerSize;
|
|
|