Ignore:
Timestamp:
May 19, 2010, 6:15:32 PM (15 years ago)
Author:
[email protected]
Message:

Reverting r59800, this b0rked stuff.

Reviewed by NOBODY (build fix).

(JSC::Interpreter::retrieveCaller):
(JSC::Interpreter::findFunctionCallFrame):

  • interpreter/Interpreter.h:
  • profiler/Profiler.cpp:

(JSC::Profiler::createCallIdentifier):

  • runtime/FunctionPrototype.cpp:

(JSC::functionProtoFuncToString):

  • runtime/JSFunction.cpp:

(JSC::):
(JSC::JSFunction::JSFunction):

  • runtime/JSFunction.h:
  • runtime/JSObject.cpp:
  • runtime/JSObject.h:
  • runtime/Lookup.cpp:

(JSC::setUpStaticFunctionSlot):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSObject.cpp

    r59800 r59801  
    2828#include "ErrorConstructor.h"
    2929#include "GetterSetter.h"
    30 #include "JSFunction.h"
    3130#include "JSGlobalObject.h"
    3231#include "NativeErrorConstructor.h"
     
    511510}
    512511
    513 void JSObject::putDirectFunction(ExecState* exec, JSFunction* function, unsigned attr)
    514 {
    515     putDirectFunction(Identifier(exec, function->name(exec)), function, attr);
    516 }
    517 
    518512void 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)
    524513{
    525514    putDirectFunctionWithoutTransition(Identifier(exec, function->name(exec)), function, attr);
Note: See TracChangeset for help on using the changeset viewer.