Changeset 62419 in webkit for trunk/JavaScriptCore/runtime/JSImmediate.h
- Timestamp:
- Jul 2, 2010, 5:28:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSImmediate.h
r61778 r62419 44 44 class JSObject; 45 45 class UString; 46 47 extern const size_t CELL_MASK;48 46 49 47 #if USE(JSVALUE64) … … 598 596 inline bool JSValue::isCell() const 599 597 { 600 #ifndef NDEBUG601 bool r = !JSImmediate::isImmediate(asValue());602 ASSERT(!r || !(JSImmediate::rawValue(asValue()) & CELL_MASK));603 return r;604 #else605 598 return !JSImmediate::isImmediate(asValue()); 606 #endif607 599 } 608 600
Note:
See TracChangeset
for help on using the changeset viewer.