Changeset 59676 in webkit for trunk/JavaScriptCore/runtime/JSFunction.cpp
- Timestamp:
- May 18, 2010, 11:32:30 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSFunction.cpp
r59637 r59676 70 70 UNUSED_PARAM(thunk); 71 71 UNUSED_PARAM(length); 72 UNUSED_PARAM(func);73 72 ASSERT_NOT_REACHED(); 74 73 #endif … … 127 126 CallType JSFunction::getCallData(CallData& callData) 128 127 { 128 #if ENABLE(JIT) 129 129 if (isHostFunction()) { 130 130 callData.native.function = nativeFunction(); 131 131 return CallTypeHost; 132 132 } 133 #endif 133 134 callData.js.functionExecutable = jsExecutable(); 134 135 callData.js.scopeChain = scope().node();
Note:
See TracChangeset
for help on using the changeset viewer.