Changeset 59801 in webkit for trunk/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- May 19, 2010, 6:15:32 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSObject.cpp
r59800 r59801 28 28 #include "ErrorConstructor.h" 29 29 #include "GetterSetter.h" 30 #include "JSFunction.h"31 30 #include "JSGlobalObject.h" 32 31 #include "NativeErrorConstructor.h" … … 511 510 } 512 511 513 void JSObject::putDirectFunction(ExecState* exec, JSFunction* function, unsigned attr)514 {515 putDirectFunction(Identifier(exec, function->name(exec)), function, attr);516 }517 518 512 void JSObject::putDirectFunctionWithoutTransition(ExecState* exec, InternalFunction* function, unsigned attr) 519 {520 putDirectFunctionWithoutTransition(Identifier(exec, function->name(exec)), function, attr);521 }522 523 void JSObject::putDirectFunctionWithoutTransition(ExecState* exec, JSFunction* function, unsigned attr)524 513 { 525 514 putDirectFunctionWithoutTransition(Identifier(exec, function->name(exec)), function, attr);
Note:
See TracChangeset
for help on using the changeset viewer.