Changeset 96465 in webkit for trunk/Source/JavaScriptCore/heap/Local.h
- Timestamp:
- Oct 1, 2011, 5:54:56 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/Local.h
r95912 r96465 58 58 59 59 template <typename T> inline Local<T>::Local(JSGlobalData& globalData, ExternalType value) 60 : Handle<T>(globalData. allocateLocalHandle())60 : Handle<T>(globalData.heap.handleStack()->push()) 61 61 { 62 62 set(value); … … 64 64 65 65 template <typename T> inline Local<T>::Local(JSGlobalData& globalData, Handle<T> other) 66 : Handle<T>(globalData. allocateLocalHandle())66 : Handle<T>(globalData.heap.handleStack()->push()) 67 67 { 68 68 set(other.get());
Note:
See TracChangeset
for help on using the changeset viewer.