Changeset 5581 in webkit for trunk/JavaScriptCore/kjs/object.cpp
- Timestamp:
- Nov 18, 2003, 1:23:28 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r4191 r5581 147 147 return Value(_proto); 148 148 149 if (_proto->dispatchType() != ObjectType) 149 if (_proto->dispatchType() != ObjectType) { 150 150 return Undefined(); 151 } 151 152 152 153 return static_cast<ObjectImp *>(_proto)->get(exec, propertyName); … … 223 224 return true; 224 225 225 if (_proto->dispatchType() != ObjectType) 226 if (_proto->dispatchType() != ObjectType) { 226 227 return false; 228 } 227 229 228 230 // Look in the prototype
Note:
See TracChangeset
for help on using the changeset viewer.