Changeset 99312 in webkit for trunk/Source/JavaScriptCore/API/JSValueRef.cpp
- Timestamp:
- Nov 4, 2011, 1:37:32 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSValueRef.cpp
r99264 r99312 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.