Changeset 64684 in webkit for trunk/JavaScriptCore/runtime/MarkStack.h
- Timestamp:
- Aug 4, 2010, 3:21:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/MarkStack.h
r64655 r64684 47 47 } 48 48 49 template<typename T> ALWAYS_INLINE void append(T*& cell); 50 ALWAYS_INLINE void append(JSValue&); 51 ALWAYS_INLINE void append(Register&); 49 ALWAYS_INLINE void append(JSValue); 50 void append(JSCell*); 52 51 53 52 ALWAYS_INLINE void appendValues(Register* values, size_t count, MarkSetProperties properties = NoNullValues) … … 72 71 73 72 private: 74 void appendInternal(JSCell*&);75 76 73 void markChildren(JSCell*); 77 74
Note:
See TracChangeset
for help on using the changeset viewer.