Changeset 440 for trunk/JavaScriptCore/kjs/ArrayPrototype.cpp
- Timestamp:
- 08/18/08 11:14:49 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/ArrayPrototype.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/ArrayPrototype.cpp
r414 r440 34 34 35 35 namespace KJS { 36 37 ASSERT_CLASS_FITS_IN_CELL(ArrayPrototype); 36 38 37 39 static JSValue* arrayProtoFuncToString(ExecState*, JSObject*, JSValue*, const ArgList&); … … 263 265 if (curArg->isObject(&JSArray::info)) { 264 266 JSArray* curArray = static_cast<JSArray*>(curArg); 265 unsigned length = curArray-> getLength();267 unsigned length = curArray->length(); 266 268 for (unsigned k = 0; k < length; ++k) { 267 269 if (JSValue* v = getProperty(exec, curArray, k))
