Title: [139510] trunk/Source/_javascript_Core
- Revision
- 139510
- Author
- psola...@apple.com
- Date
- 2013-01-11 15:32:44 -0800 (Fri, 11 Jan 2013)
Log 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:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (139509 => 139510)
--- trunk/Source/_javascript_Core/ChangeLog 2013-01-11 23:18:06 UTC (rev 139509)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-01-11 23:32:44 UTC (rev 139510)
@@ -1,3 +1,16 @@
+2013-01-11 Pratik Solanki <psola...@apple.com>
+
+ 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:
+
2013-01-11 Mark Hahnenberg <mhahnenb...@apple.com>
testapi is failing with a block-related error in the Objc API
Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (139509 => 139510)
--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp 2013-01-11 23:18:06 UTC (rev 139509)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp 2013-01-11 23:32:44 UTC (rev 139510)
@@ -952,7 +952,7 @@
// object.
// Compile source to bytecode if necessary:
- if (JSObject* error = program->initalizeGlobalProperties(globalData, callFrame, scope))
+ if (JSObject* error = program->initializeGlobalProperties(globalData, callFrame, scope))
return checkedReturn(throwError(callFrame, error));
if (JSObject* error = program->compile(callFrame, scope))
Modified: trunk/Source/_javascript_Core/runtime/Executable.cpp (139509 => 139510)
--- trunk/Source/_javascript_Core/runtime/Executable.cpp 2013-01-11 23:18:06 UTC (rev 139509)
+++ trunk/Source/_javascript_Core/runtime/Executable.cpp 2013-01-11 23:32:44 UTC (rev 139510)
@@ -372,7 +372,7 @@
return index;
}
-JSObject* ProgramExecutable::initalizeGlobalProperties(JSGlobalData& globalData, CallFrame* callFrame, JSScope* scope)
+JSObject* ProgramExecutable::initializeGlobalProperties(JSGlobalData& globalData, CallFrame* callFrame, JSScope* scope)
{
ASSERT(scope);
JSGlobalObject* globalObject = scope->globalObject();
Modified: trunk/Source/_javascript_Core/runtime/Executable.h (139509 => 139510)
--- trunk/Source/_javascript_Core/runtime/Executable.h 2013-01-11 23:18:06 UTC (rev 139509)
+++ trunk/Source/_javascript_Core/runtime/Executable.h 2013-01-11 23:32:44 UTC (rev 139510)
@@ -500,7 +500,7 @@
}
- JSObject* initalizeGlobalProperties(JSGlobalData&, CallFrame*, JSScope*);
+ JSObject* initializeGlobalProperties(JSGlobalData&, CallFrame*, JSScope*);
static void destroy(JSCell*);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes