Changeset 272428 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
- Timestamp:
- Feb 5, 2021, 10:58:06 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
r272364 r272428 886 886 return true; 887 887 888 bool excluded = isPropertyNameExcluded(globalObject, propertyName);889 RETURN_IF_EXCEPTION(scope, false);890 if (excluded)891 return true;892 888 if (entry.attributes & PropertyAttribute::DontEnum) 893 889 return true; … … 903 899 // FIXME: We could put properties in a batching manner to accelerate CopyDataProperties more. 904 900 // https://bugs.webkit.org/show_bug.cgi?id=185358 901 bool excluded = isPropertyNameExcluded(globalObject, properties[i].get()); 902 RETURN_IF_EXCEPTION(scope, { }); 903 if (excluded) 904 continue; 905 905 target->putDirect(vm, properties[i].get(), values.at(i)); 906 906 }
Note:
See TracChangeset
for help on using the changeset viewer.