Changeset 10563 in webkit for trunk/JavaScriptCore/kjs/protected_values.cpp
- Timestamp:
- Sep 18, 2005, 11:57:28 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/protected_values.cpp
r10084 r10563 25 25 #include "pointer_hash.h" 26 26 #include "simple_number.h" 27 #include "internal.h" 27 28 #include <stdint.h> 28 29 #include "value.h" … … 39 40 int ProtectedValues::getProtectCount(ValueImp *k) 40 41 { 42 assert(k); 43 assert(InterpreterImp::lockCount() > 0); 44 41 45 if (!_table) 42 46 return 0; … … 66 70 { 67 71 assert(k); 72 assert(InterpreterImp::lockCount() > 0); 68 73 69 74 if (SimpleNumber::is(k)) … … 115 120 { 116 121 assert(k); 122 assert(InterpreterImp::lockCount() > 0); 117 123 118 124 if (SimpleNumber::is(k))
Note:
See TracChangeset
for help on using the changeset viewer.