Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index a16ebbf60607c0c676b8bdbe4e7d47114f60c976..b7b32f8ddcc4d18d0e1344c08f611ef77bf6ee79 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -3677,7 +3677,7 @@ class ScopeInfo : public FixedArray { |
static inline ScopeInfo* cast(Object* object); |
// Return the type of this scope. |
- ScopeType Type(); |
+ ScopeType scope_type(); |
// Does this scope call eval? |
bool CallsEval(); |
@@ -3860,7 +3860,7 @@ class ScopeInfo : public FixedArray { |
}; |
// Properties of scopes. |
- class TypeField: public BitField<ScopeType, 0, 3> {}; |
+ class ScopeTypeField: public BitField<ScopeType, 0, 3> {}; |
class CallsEvalField: public BitField<bool, 3, 1> {}; |
class LanguageModeField: public BitField<LanguageMode, 4, 2> {}; |
class FunctionVariableField: public BitField<FunctionVariableInfo, 6, 2> {}; |