| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 6ce1c997a6e8ab46f8696cda19200e82e9683c16..bace194207694f3789edc00c28c3a44f65f92f13 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4295,7 +4295,7 @@ class ScopeInfo : public FixedArray {
|
| class HasSimpleParametersField
|
| : public BitField<bool, AsmFunctionField::kNext, 1> {};
|
| class FunctionKindField
|
| - : public BitField<FunctionKind, HasSimpleParametersField::kNext, 8> {};
|
| + : public BitField<FunctionKind, HasSimpleParametersField::kNext, 9> {};
|
|
|
| // BitFields representing the encoded information for context locals in the
|
| // ContextLocalInfoEntries part.
|
| @@ -7149,6 +7149,7 @@ class SharedFunctionInfo: public HeapObject {
|
| kIsGetterFunction,
|
| kIsSetterFunction,
|
| // byte 3
|
| + kIsAsyncFunction,
|
| kDeserialized,
|
| kIsDeclaration,
|
| kCompilerHintsCount, // Pseudo entry
|
| @@ -7171,7 +7172,7 @@ class SharedFunctionInfo: public HeapObject {
|
| ASSERT_FUNCTION_KIND_ORDER(kSetterFunction, kIsSetterFunction);
|
| #undef ASSERT_FUNCTION_KIND_ORDER
|
|
|
| - class FunctionKindBits : public BitField<FunctionKind, kIsArrow, 8> {};
|
| + class FunctionKindBits : public BitField<FunctionKind, kIsArrow, 9> {};
|
|
|
| class DeoptCountBits : public BitField<int, 0, 4> {};
|
| class OptReenableTriesBits : public BitField<int, 4, 18> {};
|
|
|