Changeset 59974 in webkit for trunk/JavaScriptCore/runtime/JSFunction.cpp
- Timestamp:
- May 21, 2010, 4:49:48 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSFunction.cpp
r59941 r59974 121 121 const UString& JSFunction::name(ExecState* exec) 122 122 { 123 return asString(getDirect(exec->globalData().propertyNames->name))-> value(exec);123 return asString(getDirect(exec->globalData().propertyNames->name))->tryGetValue(); 124 124 } 125 125 … … 129 129 130 130 if (displayName && isJSString(&exec->globalData(), displayName)) 131 return asString(displayName)-> value(exec);131 return asString(displayName)->tryGetValue(); 132 132 133 133 return UString::null();
Note:
See TracChangeset
for help on using the changeset viewer.