| Index: src/parser.h
|
| diff --git a/src/parser.h b/src/parser.h
|
| index 9080160c7590f21cce5a7ac3e619e86b60d383f0..3e35983e3689f45d8b3d62e05067f8a7c73b832b 100644
|
| --- a/src/parser.h
|
| +++ b/src/parser.h
|
| @@ -215,7 +215,7 @@ class FunctionEntry BASE_EMBEDDED {
|
| kLiteralCountIndex,
|
| kPropertyCountIndex,
|
| kLanguageModeIndex,
|
| - kUsesSuperPropertyIndex,
|
| + kNeedsHomeObjectIndex,
|
| kSize
|
| };
|
|
|
| @@ -232,7 +232,7 @@ class FunctionEntry BASE_EMBEDDED {
|
| DCHECK(is_valid_language_mode(backing_[kLanguageModeIndex]));
|
| return static_cast<LanguageMode>(backing_[kLanguageModeIndex]);
|
| }
|
| - bool uses_super_property() { return backing_[kUsesSuperPropertyIndex]; }
|
| + bool needs_home_object() { return backing_[kNeedsHomeObjectIndex]; }
|
|
|
| bool is_valid() { return !backing_.is_empty(); }
|
|
|
|
|