From 747ac632f80f577f16ad27a32def63730e7253dc Mon Sep 17 00:00:00 2001 From: "oliver@apple.com" Date: Wed, 8 Feb 2012 21:46:42 +0000 Subject: [PATCH] Whoops, fix the build. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@107131 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/JavaScriptCore/ChangeLog | 7 +++++++ Source/JavaScriptCore/runtime/Executable.cpp | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog index fa3548e..bbef236 100644 --- a/Source/JavaScriptCore/ChangeLog +++ b/Source/JavaScriptCore/ChangeLog @@ -1,5 +1,12 @@ 2012-02-08 Oliver Hunt + Whoops, fix the build. + + * runtime/Executable.cpp: + (JSC::FunctionExecutable::FunctionExecutable): + +2012-02-08 Oliver Hunt + Fix issue encountered while debugging stacktraces https://bugs.webkit.org/show_bug.cgi?id=78147 diff --git a/Source/JavaScriptCore/runtime/Executable.cpp b/Source/JavaScriptCore/runtime/Executable.cpp index bad2bae..bf49767 100644 --- a/Source/JavaScriptCore/runtime/Executable.cpp +++ b/Source/JavaScriptCore/runtime/Executable.cpp @@ -137,7 +137,7 @@ FunctionExecutable::FunctionExecutable(JSGlobalData& globalData, const Identifie , 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) { } -- 2.7.4