summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/runtime/StringRecursionChecker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/runtime/StringRecursionChecker.cpp')
-rw-r--r--Source/JavaScriptCore/runtime/StringRecursionChecker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/StringRecursionChecker.cpp b/Source/JavaScriptCore/runtime/StringRecursionChecker.cpp
index 8835a5c1c..638310787 100644
--- a/Source/JavaScriptCore/runtime/StringRecursionChecker.cpp
+++ b/Source/JavaScriptCore/runtime/StringRecursionChecker.cpp
@@ -22,13 +22,13 @@
#include "Error.h"
#include "ExceptionHelpers.h"
-#include "Operations.h"
+#include "JSCInlines.h"
namespace JSC {
JSValue StringRecursionChecker::throwStackOverflowError()
{
- return throwError(m_exec, createStackOverflowError(m_exec));
+ return JSC::throwStackOverflowError(m_exec);
}
JSValue StringRecursionChecker::emptyString()