| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 23ac7cea559046c152cf6eddf35eff24fca61507..7ad59a1050b297ef76860197bb11d53d3c1b4ba7 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4503,12 +4503,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;
|
| };
|
|
|