Changeset 223161 in webkit for trunk/Source/JavaScriptCore/bytecode/PropertyCondition.cpp
- Timestamp:
- Oct 10, 2017, 5:53:59 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/PropertyCondition.cpp
r222827 r223161 123 123 } 124 124 125 JSObject* currentPrototype; 126 if (structure->hasMonoProto()) 127 currentPrototype = structure->storedPrototypeObject(); 128 else { 129 RELEASE_ASSERT(base); 130 currentPrototype = jsDynamicCast<JSObject*>(*structure->vm(), base->getPrototypeDirect()); 131 } 132 133 if (currentPrototype != prototype()) { 125 if (structure->storedPrototypeObject() != prototype()) { 134 126 if (PropertyConditionInternal::verbose) { 135 127 dataLog(
Note:
See TracChangeset
for help on using the changeset viewer.