Show
Ignore:
Timestamp:
08/18/08 11:14:49 (5 months ago)
Author:
odole
Message:

merge with webkit revision 35814

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/JavaScriptCore/kjs/PrototypeFunction.cpp

    r404 r440  
    3232namespace KJS { 
    3333 
     34ASSERT_CLASS_FITS_IN_CELL(PrototypeFunction); 
     35 
    3436PrototypeFunction::PrototypeFunction(ExecState* exec, int length, const Identifier& name, NativeFunction function) 
    35     : InternalFunction(exec->lexicalGlobalObject()->functionPrototype(), name) 
     37    : InternalFunction(exec, exec->lexicalGlobalObject()->functionPrototype(), name) 
    3638    , m_function(function) 
    3739{ 
     
    4143 
    4244PrototypeFunction::PrototypeFunction(ExecState* exec, FunctionPrototype* functionPrototype, int length, const Identifier& name, NativeFunction function) 
    43     : InternalFunction(functionPrototype, name) 
     45    : InternalFunction(exec, functionPrototype, name) 
    4446    , m_function(function) 
    4547{