Changeset 5480 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Nov 13, 2003, 2:53:00 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r5356 r5480 2074 2074 2075 2075 e = expr->evaluate(exec); 2076 2077 // for Null and Undefined, we want to make sure not to go through 2078 // the loop at all, because their object wrappers will have a 2079 // property list but will throw an exception if you attempt to 2080 // access any property. 2081 if (e.type() == UndefinedType || e.type() == NullType) { 2082 return Completion(Normal, retval); 2083 } 2084 2076 2085 KJS_CHECKEXCEPTION 2077 2086 v = e.toObject(exec);
Note:
See TracChangeset
for help on using the changeset viewer.