Changeset 139510 in webkit


Ignore:
Timestamp:
Jan 11, 2013, 3:32:44 PM (12 years ago)
Author:
psolanki@apple.com
Message:

Fix function name typo ProgramExecutable::initalizeGlobalProperties()
https://bugs.webkit.org/show_bug.cgi?id=106701

Reviewed by Geoffrey Garen.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::execute):

  • runtime/Executable.cpp:

(JSC::ProgramExecutable::initializeGlobalProperties):

  • runtime/Executable.h:
Location:
trunk/Source/JavaScriptCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r139508 r139510  
     12013-01-11  Pratik Solanki  <psolanki@apple.com>
     2
     3        Fix function name typo ProgramExecutable::initalizeGlobalProperties()
     4        https://bugs.webkit.org/show_bug.cgi?id=106701
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        * interpreter/Interpreter.cpp:
     9        (JSC::Interpreter::execute):
     10        * runtime/Executable.cpp:
     11        (JSC::ProgramExecutable::initializeGlobalProperties):
     12        * runtime/Executable.h:
     13
    1142013-01-11  Mark Hahnenberg  <mhahnenberg@apple.com>
    215
  • trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp

    r136927 r139510  
    953953
    954954    // Compile source to bytecode if necessary:
    955     if (JSObject* error = program->initalizeGlobalProperties(globalData, callFrame, scope))
     955    if (JSObject* error = program->initializeGlobalProperties(globalData, callFrame, scope))
    956956        return checkedReturn(throwError(callFrame, error));
    957957
  • trunk/Source/JavaScriptCore/runtime/Executable.cpp

    r138763 r139510  
    373373}
    374374
    375 JSObject* ProgramExecutable::initalizeGlobalProperties(JSGlobalData& globalData, CallFrame* callFrame, JSScope* scope)
     375JSObject* ProgramExecutable::initializeGlobalProperties(JSGlobalData& globalData, CallFrame* callFrame, JSScope* scope)
    376376{
    377377    ASSERT(scope);
  • trunk/Source/JavaScriptCore/runtime/Executable.h

    r138763 r139510  
    501501
    502502
    503         JSObject* initalizeGlobalProperties(JSGlobalData&, CallFrame*, JSScope*);
     503        JSObject* initializeGlobalProperties(JSGlobalData&, CallFrame*, JSScope*);
    504504
    505505        static void destroy(JSCell*);
Note: See TracChangeset for help on using the changeset viewer.