Changeset 155262 in webkit for trunk/Source/JavaScriptCore/runtime
- Timestamp:
- Sep 7, 2013, 3:15:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/SymbolTable.h
r154038 r155262 473 473 // 0 if we don't capture any arguments; parameterCount() in length if we do. 474 474 const SlowArgument* slowArguments() { return m_slowArguments.get(); } 475 void setSlowArguments( PassOwnArrayPtr<SlowArgument> slowArguments) { m_slowArguments = slowArguments; }475 void setSlowArguments(OwnArrayPtr<SlowArgument> slowArguments) { m_slowArguments = std::move(slowArguments); } 476 476 477 477 DECLARE_EXPORT_INFO;
Note:
See TracChangeset
for help on using the changeset viewer.