Changeset 154457 in webkit for trunk/Source/JavaScriptCore/runtime/ExceptionHelpers.cpp
- Timestamp:
- Aug 22, 2013, 12:44:20 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/ExceptionHelpers.cpp
r154038 r154457 107 107 if (object->methodTable()->getCallData(object, callData) != CallTypeNone) 108 108 return vm.smallStrings.functionString(); 109 return jsString(exec, object->methodTable()->className(object)); 109 110 } 110 return jsString(exec, asObject(v)->methodTable()->className(asObject(v))); 111 112 ASSERT(v.isEmpty()); 113 // FIXME: https://bugs.webkit.org/show_bug.cgi?id=120080 The JSValue should never be empty in this function. 114 return vm.smallStrings.emptyString(); 111 115 } 112 116
Note:
See TracChangeset
for help on using the changeset viewer.