Changeset 52178 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Dec 15, 2009, 3:33:40 PM (15 years ago)
- Location:
- trunk/JavaScriptCore/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSCell.cpp
r51801 r52178 77 77 #endif // !(defined NAN && defined INFINITY) 78 78 79 void* JSCell::operator new(size_t size, ExecState* exec)80 {81 return exec->heap()->allocate(size);82 }83 84 79 bool JSCell::getUInt32(uint32_t&) const 85 80 { -
trunk/JavaScriptCore/runtime/JSCell.h
r52176 r52178 162 162 } 163 163 164 inline void* JSCell::operator new(size_t size, ExecState* exec) 165 { 166 return exec->heap()->allocate(size); 167 } 168 164 169 // --- JSValue inlines ---------------------------- 165 170
Note:
See TracChangeset
for help on using the changeset viewer.