| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 10d6deeeb0e6d273eaf1c72094523c52f5a8c9f3..b4fec8ee7e35495d9622a555cec82f8396cfd821 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4507,12 +4507,10 @@ class ScopeInfo : public FixedArray {
|
| class FunctionKindField
|
| : public BitField<FunctionKind, HasSimpleParametersField::kNext, 9> {};
|
|
|
| - // BitFields representing the encoded information for context locals in the
|
| - // ContextLocalInfoEntries part.
|
| - class ContextLocalMode: public BitField<VariableMode, 0, 3> {};
|
| - class ContextLocalInitFlag: public BitField<InitializationFlag, 3, 1> {};
|
| - class ContextLocalMaybeAssignedFlag
|
| - : public BitField<MaybeAssignedFlag, 4, 1> {};
|
| + // Properties of variables.
|
| + class VariableModeField : public BitField<VariableMode, 0, 3> {};
|
| + class InitFlagField : public BitField<InitializationFlag, 3, 1> {};
|
| + class MaybeAssignedFlagField : public BitField<MaybeAssignedFlag, 4, 1> {};
|
|
|
| friend class ScopeIterator;
|
| };
|
|
|