Changeset 8249 in webkit for trunk/JavaScriptCore/kjs/protected_values.cpp
- Timestamp:
- Dec 17, 2004, 4:43:37 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/protected_values.cpp
r6549 r8249 22 22 23 23 #include "protected_values.h" 24 #include "simple_number.h" 24 25 25 26 namespace KJS { … … 37 38 return 0; 38 39 40 if (SimpleNumber::is(k)) 41 return 0; 42 39 43 unsigned hash = computeHash(k); 40 44 … … 58 62 { 59 63 assert(k); 64 65 if (SimpleNumber::is(k)) 66 return; 60 67 61 68 if (!_table) … … 104 111 { 105 112 assert(k); 113 114 if (SimpleNumber::is(k)) 115 return; 106 116 107 117 unsigned hash = computeHash(k);
Note:
See TracChangeset
for help on using the changeset viewer.