Changeset 37297 in webkit for trunk/JavaScriptCore/kjs/InternalFunction.cpp
- Timestamp:
- Oct 4, 2008, 2:12:54 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/InternalFunction.cpp
r37257 r37297 50 50 } 51 51 52 const UString& InternalFunction::name( ExecState* exec)52 const UString& InternalFunction::name(JSGlobalData* globalData) 53 53 { 54 JSValue* v = getDirect( exec->propertyNames().name);54 JSValue* v = getDirect(globalData->propertyNames->name); 55 55 ASSERT(v->isString()); 56 56 return static_cast<JSString*>(v)->value();
Note:
See TracChangeset
for help on using the changeset viewer.