Title: [107131] trunk/Source/_javascript_Core
Revision
107131
Author
[email protected]
Date
2012-02-08 13:46:42 -0800 (Wed, 08 Feb 2012)

Log Message

Whoops, fix the build.

Modified Paths


Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (107130 => 107131)


--- trunk/Source/_javascript_Core/ChangeLog	2012-02-08 21:41:47 UTC (rev 107130)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-02-08 21:46:42 UTC (rev 107131)
@@ -1,5 +1,12 @@
 2012-02-08  Oliver Hunt  <[email protected]>
 
+        Whoops, fix the build.
+
+        * runtime/Executable.cpp:
+        (JSC::FunctionExecutable::FunctionExecutable):
+
+2012-02-08  Oliver Hunt  <[email protected]>
+
         Fix issue encountered while debugging stacktraces
         https://bugs.webkit.org/show_bug.cgi?id=78147
 

Modified: trunk/Source/_javascript_Core/runtime/Executable.cpp (107130 => 107131)


--- trunk/Source/_javascript_Core/runtime/Executable.cpp	2012-02-08 21:41:47 UTC (rev 107130)
+++ trunk/Source/_javascript_Core/runtime/Executable.cpp	2012-02-08 21:46:42 UTC (rev 107131)
@@ -137,7 +137,7 @@
     , m_forceUsesArguments(forceUsesArguments)
     , m_parameters(parameters)
     , m_name(name)
-    , m_inferredName(inferredName.isNull() ? exec->globalData().propertyNames->emptyIdentifier : inferredName)
+    , m_inferredName(inferredName.isNull() ? globalData.propertyNames->emptyIdentifier : inferredName)
     , m_symbolTable(0)
 {
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to