Ignore:
Timestamp:
Aug 20, 2009, 11:04:37 AM (16 years ago)
Author:
[email protected]
Message:

Roll out r47571 and related build fixes as it caused us to leak the world without warning.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSFunction.h

    r47571 r47582  
    2525#define JSFunction_h
    2626
     27#include "Executable.h"
    2728#include "InternalFunction.h"
    2829
    2930namespace JSC {
    3031
    31     class FunctionExecutable;
    3232    class FunctionPrototype;
    3333    class JSActivation;
     
    122122    }
    123123
     124    inline JSFunction* FunctionExecutable::make(ExecState* exec, ScopeChainNode* scopeChain)
     125    {
     126        return new (exec) JSFunction(exec, this, scopeChain);
     127    }
     128
    124129} // namespace JSC
    125130
Note: See TracChangeset for help on using the changeset viewer.