Changeset 139510 in webkit
- Timestamp:
- Jan 11, 2013, 3:32:44 PM (12 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r139508 r139510 1 2013-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 1 14 2013-01-11 Mark Hahnenberg <mhahnenberg@apple.com> 2 15 -
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r136927 r139510 953 953 954 954 // Compile source to bytecode if necessary: 955 if (JSObject* error = program->init alizeGlobalProperties(globalData, callFrame, scope))955 if (JSObject* error = program->initializeGlobalProperties(globalData, callFrame, scope)) 956 956 return checkedReturn(throwError(callFrame, error)); 957 957 -
trunk/Source/JavaScriptCore/runtime/Executable.cpp
r138763 r139510 373 373 } 374 374 375 JSObject* ProgramExecutable::init alizeGlobalProperties(JSGlobalData& globalData, CallFrame* callFrame, JSScope* scope)375 JSObject* ProgramExecutable::initializeGlobalProperties(JSGlobalData& globalData, CallFrame* callFrame, JSScope* scope) 376 376 { 377 377 ASSERT(scope); -
trunk/Source/JavaScriptCore/runtime/Executable.h
r138763 r139510 501 501 502 502 503 JSObject* init alizeGlobalProperties(JSGlobalData&, CallFrame*, JSScope*);503 JSObject* initializeGlobalProperties(JSGlobalData&, CallFrame*, JSScope*); 504 504 505 505 static void destroy(JSCell*);
Note:
See TracChangeset
for help on using the changeset viewer.