| Index: src/scopes.h
|
| diff --git a/src/scopes.h b/src/scopes.h
|
| index 2cc8b3e9569bf80bc11d49dfdda733d134ef7f73..cd4658d37bca7ae3fbf7ac007323c90217074ed8 100644
|
| --- a/src/scopes.h
|
| +++ b/src/scopes.h
|
| @@ -88,7 +88,7 @@
|
| scope_name_ = scope_name;
|
| }
|
|
|
| - void Initialize(bool subclass_constructor = false);
|
| + void Initialize(bool uninitialized_this = false);
|
|
|
| // Checks if the block scope is redundant, i.e. it does not contain any
|
| // block scoped declarations. In that case it is removed from the scope
|
| @@ -343,11 +343,8 @@
|
| // The language mode of this scope.
|
| LanguageMode language_mode() const { return language_mode_; }
|
|
|
| - // The variable corresponding to the 'this' value.
|
| + // The variable corresponding the 'this' value.
|
| Variable* receiver() { return receiver_; }
|
| -
|
| - // The variable corresponding to the 'new.target' value.
|
| - Variable* new_target_var() { return new_target_; }
|
|
|
| // The variable holding the function literal for named function
|
| // literals, or NULL. Only valid for function scopes.
|
| @@ -520,8 +517,6 @@
|
| Variable* receiver_;
|
| // Function variable, if any; function scopes only.
|
| VariableDeclaration* function_;
|
| - // new.target variable, function scopes only.
|
| - Variable* new_target_;
|
| // Convenience variable; function scopes only.
|
| Variable* arguments_;
|
| // Interface; module scopes only.
|
|
|