| Index: src/ast.h
|
| diff --git a/src/ast.h b/src/ast.h
|
| index ba8b9806c122526a86e2db13a1e43a84df865e12..5eaf7791d090fcfd685176d609bc0912d37edfa3 100644
|
| --- a/src/ast.h
|
| +++ b/src/ast.h
|
| @@ -1005,8 +1005,6 @@ class VariableProxy: public Expression {
|
|
|
| Handle<String> name() const { return name_; }
|
| Variable* var() const { return var_; }
|
| - UseCount* var_uses() { return &var_uses_; }
|
| - UseCount* obj_uses() { return &obj_uses_; }
|
| bool is_this() const { return is_this_; }
|
| bool inside_with() const { return inside_with_; }
|
|
|
| @@ -1019,10 +1017,6 @@ class VariableProxy: public Expression {
|
| bool is_this_;
|
| bool inside_with_;
|
|
|
| - // VariableProxy usage info.
|
| - UseCount var_uses_; // uses of the variable value
|
| - UseCount obj_uses_; // uses of the object the variable points to
|
| -
|
| VariableProxy(Handle<String> name, bool is_this, bool inside_with);
|
| explicit VariableProxy(bool is_this);
|
|
|
|
|