| Index: arguments/src/scopes.h
|
| diff --git a/arguments/src/scopes.h b/arguments/src/scopes.h
|
| index 10994df9c855cf503fd7e8bcb86580d41916ac47..c8fb318943a3519ae54437900301954d4e729791 100644
|
| --- a/arguments/src/scopes.h
|
| +++ b/arguments/src/scopes.h
|
| @@ -254,10 +254,6 @@ class Scope: public ZoneObject {
|
| // If arguments() exist, arguments_shadow() exists, too.
|
| Variable* arguments() const { return arguments_; }
|
|
|
| - // The '.arguments' shadow variable if we need to allocate it; NULL otherwise.
|
| - // If arguments_shadow() exist, arguments() exists, too.
|
| - Variable* arguments_shadow() const { return arguments_shadow_; }
|
| -
|
| // Declarations list.
|
| ZoneList<Declaration*>* declarations() { return &decls_; }
|
|
|
| @@ -353,8 +349,6 @@ class Scope: public ZoneObject {
|
| Variable* function_;
|
| // Convenience variable; function scopes only.
|
| Variable* arguments_;
|
| - // Convenience variable; function scopes only.
|
| - Variable* arguments_shadow_;
|
|
|
| // Illegal redeclaration.
|
| Expression* illegal_redecl_;
|
| @@ -431,7 +425,6 @@ class Scope: public ZoneObject {
|
| receiver_ = NULL;
|
| function_ = NULL;
|
| arguments_ = NULL;
|
| - arguments_shadow_ = NULL;
|
| illegal_redecl_ = NULL;
|
| scope_inside_with_ = false;
|
| scope_contains_with_ = false;
|
|
|