We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cbed34 commit c322694Copy full SHA for c322694
lib/Runtime/Types/DictionaryPropertyDescriptor.h
@@ -274,8 +274,13 @@ namespace Js
274
this->Setter = (descriptor.Setter == DictionaryPropertyDescriptor<TPropertyIndexFrom>::NoSlots) ? NoSlots : descriptor.Setter;
275
this->IsAccessor = descriptor.IsAccessor;
276
277
+ // Not strictly required, PreventFalseReference must always be 1
278
+ this->PreventFalseReference = descriptor.PreventFalseReference;
279
+ this->IsShadowed = descriptor.IsShadowed;
280
+
281
#if ENABLE_FIXED_FIELDS
282
this->IsInitialized = descriptor.IsInitialized;
283
+ this->IsOnlyOneAccessorInitialized = descriptor.IsOnlyOneAccessorInitialized;
284
this->IsFixed = descriptor.IsFixed;
285
this->UsedAsFixed = descriptor.UsedAsFixed;
286
#endif
0 commit comments