| Index: src/variables.h
|
| diff --git a/src/variables.h b/src/variables.h
|
| index a4ead51b893653b3f5517d9b6a739aac890067bd..56c8dabd378e033647a5563d63721e1224363047 100644
|
| --- a/src/variables.h
|
| +++ b/src/variables.h
|
| @@ -120,12 +120,12 @@ class Variable: public ZoneObject {
|
|
|
| Handle<String> name() const { return name_; }
|
| Mode mode() const { return mode_; }
|
| - bool is_accessed_from_inner_function_scope() const {
|
| - return is_accessed_from_inner_function_scope_;
|
| + bool is_accessed_from_inner_scope() const {
|
| + return is_accessed_from_inner_scope_;
|
| }
|
| - void MarkAsAccessedFromInnerFunctionScope() {
|
| + void MarkAsAccessedFromInnerScope() {
|
| ASSERT(mode_ != TEMPORARY);
|
| - is_accessed_from_inner_function_scope_ = true;
|
| + is_accessed_from_inner_scope_ = true;
|
| }
|
| bool is_used() { return is_used_; }
|
| void set_is_used(bool flag) { is_used_ = flag; }
|
| @@ -188,7 +188,7 @@ class Variable: public ZoneObject {
|
| bool is_valid_LHS_;
|
|
|
| // Usage info.
|
| - bool is_accessed_from_inner_function_scope_; // set by variable resolver
|
| + bool is_accessed_from_inner_scope_; // set by variable resolver
|
| bool is_used_;
|
| };
|
|
|
|
|