Changeset 99264 in webkit for trunk/Source/JavaScriptCore/API/JSValueRef.cpp
- Timestamp:
- Nov 4, 2011, 12:35:18 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSValueRef.cpp
r99238 r99264 176 176 if (!jsConstructor->structure()->typeInfo().implementsHasInstance()) 177 177 return false; 178 bool result = jsConstructor-> methodTable()->hasInstance(jsConstructor,exec, jsValue, jsConstructor->get(exec, exec->propertyNames().prototype)); // false if an exception is thrown178 bool result = jsConstructor->hasInstance(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.