Changeset 218203 in webkit for trunk/Source/JavaScriptCore/bytecode/PropertyCondition.cpp
- Timestamp:
- Jun 13, 2017, 2:52:04 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/PropertyCondition.cpp
r211247 r218203 135 135 PropertyOffset currentOffset = structure->getConcurrently(uid(), currentAttributes); 136 136 if (currentOffset != invalidOffset) { 137 if (currentAttributes & (Accessor | CustomAccessor)) { 137 // FIXME: Given the addition of the check for ReadOnly attributes, we should refactor 138 // instances of AbsenceOfSetter. 139 // https://bugs.webkit.org/show_bug.cgi?id=173322 - Refactor AbsenceOfSetter to something like AbsenceOfSetEffects 140 if (currentAttributes & (ReadOnly | Accessor | CustomAccessor)) { 138 141 if (verbose) { 139 142 dataLog(
Note:
See TracChangeset
for help on using the changeset viewer.