Changeset 15225 in webkit for trunk/JavaScriptCore/kjs/reference.cpp
- Timestamp:
- Jul 7, 2006, 7:25:55 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/reference.cpp
r13015 r15225 44 44 } 45 45 46 Identifier Reference::getPropertyName( ExecState*) const46 Identifier Reference::getPropertyName() const 47 47 { 48 48 if (propertyNameIsNumber && prop.isNull()) … … 56 56 if (!o || !o->isObject()) { 57 57 if (!o || o->isNull()) 58 return throwError(exec, ReferenceError, "Can't find variable: " + getPropertyName( exec).ustring());58 return throwError(exec, ReferenceError, "Can't find variable: " + getPropertyName().ustring()); 59 59 return throwError(exec, ReferenceError, "Base is not an object"); 60 60 }
Note:
See TracChangeset
for help on using the changeset viewer.