Changeset 26688 in webkit for trunk/JavaScriptCore/kjs/array_object.cpp
- Timestamp:
- Oct 16, 2007, 4:25:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/array_object.cpp
r26535 r26688 27 27 #include "array_object.lut.h" 28 28 29 #include "PropertyNameArray.h" 29 30 #include "error_object.h" 30 31 #include "lookup.h" 31 32 #include "operations.h" 32 #include "PropertyNameArray.h" 33 #include <stdio.h> 34 #include <wtf/Assertions.h> 33 35 #include <wtf/HashSet.h> 34 #include <stdio.h>35 36 36 37 … … 205 206 } 206 207 207 assert(index >= sparseArrayCutoff);208 ASSERT(index >= sparseArrayCutoff); 208 209 JSObject::put(exec, Identifier::from(index), value, attr); 209 210 } … … 999 1000 } 1000 1001 default: 1001 assert(0);1002 ASSERT(0); 1002 1003 result = 0; 1003 1004 break;
Note:
See TracChangeset
for help on using the changeset viewer.