Changeset 156679 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- Sep 30, 2013, 2:41:04 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r156620 r156679 2211 2211 } 2212 2212 2213 void JSObject::putDirectNativeFunctionWithoutTransition( ExecState* exec, JSGlobalObject* globalObject, const PropertyName& propertyName, unsigned functionLength, NativeFunction nativeFunction, Intrinsic intrinsic, unsigned attributes)2213 void JSObject::putDirectNativeFunctionWithoutTransition(VM& vm, JSGlobalObject* globalObject, const PropertyName& propertyName, unsigned functionLength, NativeFunction nativeFunction, Intrinsic intrinsic, unsigned attributes) 2214 2214 { 2215 2215 StringImpl* name = propertyName.publicName(); 2216 2216 ASSERT(name); 2217 2217 2218 VM& vm = exec->vm();2219 2218 JSFunction* function = JSFunction::create(vm, globalObject, functionLength, name, nativeFunction, intrinsic); 2220 2219 putDirectWithoutTransition(vm, propertyName, function, attributes);
Note:
See TracChangeset
for help on using the changeset viewer.