Changeset 99238 in webkit for trunk/Source/JavaScriptCore/API/JSValueRef.cpp
- Timestamp:
- Nov 3, 2011, 3:40:39 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSValueRef.cpp
r94701 r99238 176 176 if (!jsConstructor->structure()->typeInfo().implementsHasInstance()) 177 177 return false; 178 bool result = jsConstructor-> hasInstance(exec, jsValue, jsConstructor->get(exec, exec->propertyNames().prototype)); // false if an exception is thrown178 bool result = jsConstructor->methodTable()->hasInstance(jsConstructor, exec, jsValue, jsConstructor->get(exec, exec->propertyNames().prototype)); // false if an exception is thrown 179 179 if (exec->hadException()) { 180 180 if (exception)
Note:
See TracChangeset
for help on using the changeset viewer.